指定可以在声明中找到子或函数的库
语法
说明
例子
''mydll.bas
''编译:
''FBC -etc mydll.bas
Public Function GetValue() As Integer Export
Function = &h1234
End Function
Declare Function GetValue Lib "MYDLL" () As Integer
Print "GetValue = &h"; Hex(GetValue())
'预期产量:
'GetValue = &h1234
与QB差别
参考