Calling a Delphi DLL from C# produces unexpected results - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T18:04:59Z http://stackoverflow.com/feeds/question/517944 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/517944/calling-a-delphi-dll-from-c-produces-unexpected-results 5 Calling a Delphi DLL from C# produces unexpected results Doug Hays 2009-02-05T21:14:27Z 2009-08-28T10:04:43Z <p>I have a Delphi DLL that I did not write, but need to call from a C# ASP.NET 3.5 app. Here is the function definition I got from the developers:</p> <pre><code>function CreateCode(SerialID : String; StartDateOfYear, YearOfStartDate, YearOfEndDate, DatePeriod : Word; CodeType,RecordNumber,StartHour,EndHour : Byte) : PChar; external 'CreateCodeDLL.dll'; </code></pre> <p>And here is my C# code:</p> <pre><code>[DllImport( "CreateCodeDLL.dll", CallingConvention = CallingConvention.StdCall, CharSet=CharSet.Ansi)] public static extern IntPtr CreateCode( string SerialID, UInt16 StartDateOfYear, UInt16 YearOfStartDate, UInt16 YearOfEndDate, UInt16 DatePeriod, Byte CodeType, Byte RecordNumber, Byte StartHour, Byte EndHour); </code></pre> <p>And finally, my call to this method: </p> <pre><code>//The Inputs String serialID = "92F00000B4FBE"; UInt16 StartDateOfYear = 20; UInt16 YearOfStartDate = 2009; UInt16 YearOfEndDate = 2009; UInt16 DatePeriod = 7; Byte CodeType = 1; Byte RecordNumber = 0; Byte StartHour = 15; Byte EndHour = 14; // The DLL call IntPtr codePtr = CodeGenerator.CreateCode(serialID, StartDateOfYear, YearOfStartDate, YearOfEndDate, DatePeriod, CodeType, RecordNumber, StartHour, EndHour); // Take the pointer and extract the code in a string String code = Marshal.PtrToStringAnsi(codePtr); </code></pre> <p>Every time I re-compile this exact code and run it, it returns a different value. The expected value is a 10-digit code comprised of numbers. The returned value is actually 12 digits. </p> <p>The last important piece of information is that I have a test .EXE that has a GUI that allows me to test the DLL. Every test using the .EXE returns the same 10-digit number (the expected result).</p> <p>So, I have to believe that I have declared my call to the DLL incorrectly. Thoughts?</p> http://stackoverflow.com/questions/517944/calling-a-delphi-dll-from-c-produces-unexpected-results/517969#517969 1 Answer by PetriW for Calling a Delphi DLL from C# produces unexpected results PetriW 2009-02-05T21:19:19Z 2009-02-05T21:53:20Z <p>I've never done this but try changing your code to:</p> <pre><code>function CreateCode(SerialID : String; StartDateOfYear, YearOfStartDate, YearOfEndDate, DatePeriod : Word; CodeType,RecordNumber,StartHour,EndHour : Byte) : PChar; stdcall; external 'CreateCodeDLL.dll'; </code></pre> <p>Note the extra stdcall.</p> <p>Edit2: As you can see from the other replies you either have to do the change above or write a wrapper dll that does the same thing.</p> http://stackoverflow.com/questions/517944/calling-a-delphi-dll-from-c-produces-unexpected-results/518065#518065 16 Answer by jn for Calling a Delphi DLL from C# produces unexpected results jn 2009-02-05T21:36:45Z 2009-08-28T10:04:43Z <p>Delphi uses the so called <strong><em>fastcall</em></strong> calling convention by default. This means that the compiler tries to pass parameters to a function in the CPU registers and only uses the stack if there are more parameters than free registers. For example Delphi uses (EAX, EDX, ECX) for the first three parameters to a function.<br /> In your C# code you're actually using the <strong><em>stdcall</em></strong> calling convention, which instructs the compiler to pass parameters via the stack (in reverse order, i.e. last param is pushed first) and to let the callee cleanup the stack.<br /> In contrast, the <strong><em>cdecl</em></strong> calling used by C/C++ compilers forces the caller to cleanup the stack.<br /> Just make sure you're using the same calling convention on both sides. Stdcall is mostly used because it can be used nearly everywhere and is supported by every compiler (Win32 APIs also use this convention).<br /> Note that <strong><em>fastcall</em></strong> isn't supported by .NET anyway.</p> http://stackoverflow.com/questions/517944/calling-a-delphi-dll-from-c-produces-unexpected-results/518092#518092 13 Answer by Barry Kelly for Calling a Delphi DLL from C# produces unexpected results Barry Kelly 2009-02-05T21:44:34Z 2009-02-06T12:45:57Z <p>jn is right. The function prototype, as given, cannot be easily called directly from C# as long as it is in Delphi's <code>register</code> calling convention. You either need to write a <code>stdcall</code> wrapper function for it - perhaps in another DLL if you don't have source - or you need to get the people who maintain the function to change its calling convention to <code>stdcall</code>.</p> <p><b>Update:</b> I also see that the first argument is a Delphi string. This isn't something that C# can supply either. It should be a PChar instead. Also, it's important to be clear about whether the function is Ansi or Unicode; if the DLL is written with Delphi 2009 (or later), then it is Unicode, otherwise it is Ansi.</p> http://stackoverflow.com/questions/517944/calling-a-delphi-dll-from-c-produces-unexpected-results/520069#520069 0 Answer by frogb for Calling a Delphi DLL from C# produces unexpected results frogb 2009-02-06T12:10:59Z 2009-02-06T12:10:59Z <p>While you are asking them to change the calling convention, you should also ask them to change the first parameter so that it is not a "string". Get them to use a pointer to a (null-terminated) char or widechar array instead. Using Delphi strings as DLL parameters is a bad idea even without the added complexity of trying to achieve cross-language compatibility. In addition the string variable will either contain ASCII or Unicode content depending on which version of Delphi they are using.</p> http://stackoverflow.com/questions/517944/calling-a-delphi-dll-from-c-produces-unexpected-results/521181#521181 2 Answer by MasterOfChaos for Calling a Delphi DLL from C# produces unexpected results MasterOfChaos 2009-02-06T17:10:22Z 2009-02-06T17:10:22Z <p>The return value might be another problem. It is probably either a memory leak(They allocate a buffer on the heap and never free it) or an access to already free memory(They return a local string variable cast to PChar).</p> <p>Returning strings(or variable sized data in general) from a function to another module is problematic in general.</p> <p>One solution(used by winapi) is to require the caller to pass in a buffer and its size. The disadvantage of that is that if the buffer is too small the function fails, and the caller must call it again with a larger buffer.</p> <p>Another possible solution is to allocate the buffer from the heap in the function and return it. Then you need to export another function which the caller must use to free the allocated memory again. This ensures that the memory is freed by the same runtime which allocated it.</p> <p>Passing a (Delphi)string parameter between different(not borland) languages is probably impossible. And even between Delphi modules you to ensure both modules use the same instance of the memory manager. Usually this means adding "uses ShareMem" as the first uses to all modules. Another difference is the calling convention "register" which is a fastcall convention, but not identical with the fastcall MS compilers use.</p> <p>A completely different solution could be recompiling the Delphi dll with one of the Delphi.net compilers. How much work that is depends on their code.</p> http://stackoverflow.com/questions/517944/calling-a-delphi-dll-from-c-produces-unexpected-results/521210#521210 1 Answer by Ben Ark for Calling a Delphi DLL from C# produces unexpected results Ben Ark 2009-02-06T17:18:00Z 2009-02-06T17:18:00Z <p>Create a COM wrapper in Delphi and call that in your C# code via interop. Voila.. easy to use from C# or any other future platform.</p>