I'm converting wrapper of SqLite database : http://www.sqlitening.com/support/index.php . Very interesting solution to work with SqLite in network enviroment and as with server/client .
It's my first time with DLL management . Please , help me to convert this function . Originally it was created with PowerBasic and I want to adopt that for FWH + Harbour . My problem is that I don't know how to interpretate "byref" .
- Code: Select all Expand view
Declare Function sluRunProc lib "SQLiteningU.Dll" alias "sluRunProc" ( _
byval ProcName as Long, _
byref Parm1 as Long, _
byref Parm2 as Long, _
byval Parm3 as Long, _
byval LengthOfParm3 as Long, _
byref SizeOfParm3 as Long, _
byval Parm4 as Dword, _
byval LengthOfParm4 as Long, _
byref SizeOfParm4 as Long, _
byval ModChars as Long) as Long
Many thanks in advance !