convert dll-call
Posted: Wed Nov 25, 2015 12:30 pm
Help needed to adapt:
according description below.
How obtain result?
Thanks - Richard
__________________________________________________
Code-tags added
25.11.2015
RSBasic
Code: Select all
Prototype sluConvertDat(a,b,c,d,e)
How obtain result?
Thanks - Richard
Code: Select all
'===========================<[ ConvertDat ]>===========================
Declare Sub sluConvertDat lib "SQLiteningU.Dll" alias "sluConvertDat" ( _
byval DataIn as Long, _
byval LengthOfDataIn as Long, _
byval DataOut as Long, _
byref SizeOfDataOut as Long, _
byval ModChars as Long)
' DataIn is a pointer to the memory containing the data to be converted.
' LengthOfDataIn contains the length of the data to be converted.
' DataOut is a pointer to the returning converted data.
' SizeOfDataOut is both passed and returned. Pass the size of DataOut.
' It must be at least the size of the returning converted data.
' The actual length of the returing converted data is returned.
' If the passed size is too small then the returning length will
' be set to -1.
' ModChars is a pointer to a null-terminated string. If not needed you
' may pass a zero.
Code-tags added
25.11.2015
RSBasic