Make Import work with String return values
Posted: Mon Feb 01, 2010 3:12 pm
At the moment you have to do the following:
Please just allow us to specify the string as return value:
Code: Select all
Import "mylibrary.lib"
MyMethodWhichReturnsAStringW(Param)
EndImport
Macro MyMethodWhichReturnsAString(Param)
PeekS(MyMethodWhichReturnsAStringW(Param))
EndMacro
Code: Select all
Import "mylibrary.lib"
MyMethodWhichReturnsAStringW.s(Param)
EndImport