使用Harbor从Clipper转换时出错

使用Harbor从Clipper转换时出错,clipper,Clipper,我已经在clipper中创建了一个测试项目 下面是test.prg的代码 store space(1) to mT @ 10,10 say "hellow Time :" get mT pict "!" read 以下是生成的hbp文件代码: -3rd=hbide_version=1.0 -3rd=hbide_type=Executable -3rd=hbide_title=test -3rd=hbide_location=d:\hcjs\ -3rd=hbide_workingfolder=

我已经在clipper中创建了一个测试项目

下面是test.prg的代码

store space(1) to mT
@ 10,10 say "hellow Time :" get mT pict "!"
read 
以下是生成的hbp文件代码:

-3rd=hbide_version=1.0
-3rd=hbide_type=Executable
-3rd=hbide_title=test
-3rd=hbide_location=d:\hcjs\
-3rd=hbide_workingfolder=
-3rd=hbide_destinationfolder=
-3rd=hbide_output=test
-3rd=hbide_launchparams=
-3rd=hbide_launchprogram=
-3rd=hbide_backupfolder=
-3rd=hbide_xhb=NO
-3rd=hbide_xpp=NO
-3rd=hbide_clp=YES

-inc
-mt
-w3
-es2
-gtwvg
-gui
-lhbwin
-lxhb

test.prg 
我遵循了以下步骤:

1. Open Project
2. I select test.hbp
3. Right-click on Select an environment
4. Select MinGW
5. Again Right Click then Build And Launch
转换不成功。我犯了一些错误。错误如下:

1. Warning: Ambiguous Reference 'mT'
2. Warning: Ambiguous Reference 'GETLIST'
3. Warning: Ambiguous Reference 'GETLIST'
4. Warning: Ambiguous Reference 'GETLIST'
5. Warning: Ambiguous Reference 'GETLIST'
6. Warning: Ambiguous Reference 'GETLIST'

Sorry, cannot launch project because of errors

顺便说一下,这是一个警告,不是一个错误。这个程序应该运行得很好

要删除警告,请在文件顶部添加以下行:

LOCAL GetList := {} 
LOCAL mT

到使用它们的函数的顶部。