Hi,
I have created a dll with somme functions returning String value.
I have problems with one of them to test my exemple. Here my scenario
code into the dll source
Function GetMyString:String()
Local ls_msg:String = "Test de retour de valeur au format string"
Return ls_msg
End Function
code call the dll
Global GetMyString() = GetProcAddress ( Library , "GetMyString" )
...
DebugLog "GetMyString=" + GetMyString()
output is
DebugLog:GetMyString=269114428
Where is the problem, a bad conversion of String Type ?
How to convert correctly the string return value ?
Thanks
I have created a dll with somme functions returning String value.
I have problems with one of them to test my exemple. Here my scenario
code into the dll source
Function GetMyString:String()
Local ls_msg:String = "Test de retour de valeur au format string"
Return ls_msg
End Function
code call the dll
Global GetMyString() = GetProcAddress ( Library , "GetMyString" )
...
DebugLog "GetMyString=" + GetMyString()
output is
DebugLog:GetMyString=269114428
Where is the problem, a bad conversion of String Type ?
How to convert correctly the string return value ?
Thanks