G
Guest
Hi,
I need to call 2 functions from an old Delphi .dll
but am struggling to formulate my call to the second one
I have managed to one of them as follows:
// definition from .dll
function FullName
char; export;
// my code
[DllImport("qn.dll",
CharSet=CharSet.Ansi,CallingConvention=CallingConvention.StdCall)]
public static extern string FullName();
but I need help formulating the next one
// definition from .dll
function DiskSaveFooter(missionname,qlffilename,id
char):TCharArray; export;
Can anyone offer me some assistance please?
I need to call 2 functions from an old Delphi .dll
but am struggling to formulate my call to the second one

I have managed to one of them as follows:
// definition from .dll
function FullName

// my code
[DllImport("qn.dll",
CharSet=CharSet.Ansi,CallingConvention=CallingConvention.StdCall)]
public static extern string FullName();
but I need help formulating the next one
// definition from .dll
function DiskSaveFooter(missionname,qlffilename,id

Can anyone offer me some assistance please?