Calling a Delphi DLL from C# containing Pointer in struct not working - Stack Overflow most recent 30 from stackoverflow.com2009-12-03T17:42:47Zhttp://stackoverflow.com/feeds/question/1080746http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1080746/calling-a-delphi-dll-from-c-containing-pointer-in-struct-not-working1Calling a Delphi DLL from C# containing Pointer in struct not workingKhan2009-07-03T20:34:17Z2009-09-21T16:56:18Z
<p>I have a delphi dll that is defined like this</p>
<pre><code>type
tSSL_connect = packed record
pssl : Pointer;
pctx : Pointer;
sock : Integer;
end;
function SSLCLT_Connect(pIPAddr: PChar;
iPort: Integer;
var pConn: tSSL_connect;
iTimeout: Integer;
bEnableNonBlockingMode: BOOL = TRUE): BOOL;
stdcall; external cltdll;
</code></pre>
<p>I converted to C# like this :</p>
<pre><code>[StructLayout(LayoutKind.Sequential,CharSet = CharSet.Ansi, Pack=1)]
public unsafe struct tSSL_connect
{
public IntPtr pssl;
public IntPtr pctx;
public UInt32 sock;
};
[DllImport("cltdll.dll", CallingConvention = CallingConvention.StdCall, CharSet = CharSet.Ansi)]
public static extern bool SSLCLT_Connect(string pIPAddr, UInt32 iPort, ref tSSL_connect pConn, UInt32 iTimeout, bool bEnableNonBlockingMode);
</code></pre>
<p>The call is like this :</p>
<pre><code>tSSL_connect conn = new tSSL_connect();
btest = SSLCLT_Connect("127.0.0.1", 3858, ref conn, 1500, false);
</code></pre>
<p>It is asking to open a channel and writes it in conn.
It returns false. So I can't get through. The conn objects returns null. I know that the server is receiving my call.</p>
<p>I think that it has something to do with the struct C# that has a wrong type. I'm pretty new to unmanaged stuff so if anyone can help getting thru.</p>
<p>I have only the dll. Thanks</p>
http://stackoverflow.com/questions/1080746/calling-a-delphi-dll-from-c-containing-pointer-in-struct-not-working/1086693#10866930Answer by RobS for Calling a Delphi DLL from C# containing Pointer in struct not workingRobS2009-07-06T12:26:14Z2009-07-06T12:26:14Z<p>This may or may not help you but, in your C# code you use UInt32 (32-bit unsigned integer) for tSSL_connect.sock (and in the SSLCLT_Connect prototype) whereas the Delphi header defines it as Integer (32-bit signed integer).</p>
<p>If this doesn't work then the alternative is to write a quick wrapper in delphi that converts between the tSSL_connect record and its fields such that it can be accessed by C#.</p>
http://stackoverflow.com/questions/1080746/calling-a-delphi-dll-from-c-containing-pointer-in-struct-not-working/1098481#10984810Answer by MrPeregrination for Calling a Delphi DLL from C# containing Pointer in struct not workingMrPeregrination2009-07-08T14:31:27Z2009-07-08T14:31:27Z<p>Hi. I'm not sure if this is your problem but I notice you are just using string in your dllimport. It appears that the default marshalling 'style' for strings is "A COM-style BSTR with a prefixed length and Unicode characters". You need a null terminating string. If that is the issue then use the MarshalAs attribute to set the marshalling type for the pIPAddr parameter:</p>
<pre><code>[MarshalAs(UnmanagedType.LPWStr)]
</code></pre>
<p>Like this:</p>
<pre><code>[DllImport("cltdll.dll", CallingConvention = CallingConvention.StdCall, CharSet = CharSet.Ansi)]
public static extern bool SSLCLT_Connect([MarshalAs(UnmanagedType.LPWStr)]string pIPAddr, UInt32 iPort, ref tSSL_connect pConn, UInt32 iTimeout, bool bEnableNonBlockingMode);
</code></pre>
http://stackoverflow.com/questions/1080746/calling-a-delphi-dll-from-c-containing-pointer-in-struct-not-working/1455560#14555600Answer by maxedmelon for Calling a Delphi DLL from C# containing Pointer in struct not workingmaxedmelon2009-09-21T16:56:18Z2009-09-21T16:56:18Z<p>Try using a char (NULL terminated string) and give the function a pointere to that char as an argument.</p>
<p>Should work for strings.</p>