AnsiString return values from a Delphi 2007 DLL in a Delphi 2009 application - Stack Overflow most recent 30 from stackoverflow.com2009-12-06T19:42:56Zhttp://stackoverflow.com/feeds/question/1041421http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1041421/ansistring-return-values-from-a-delphi-2007-dll-in-a-delphi-2009-application4AnsiString return values from a Delphi 2007 DLL in a Delphi 2009 applicationTrespassersW2009-06-24T23:00:43Z2009-07-09T04:22:22Z
<p>I have a DLL compiled with D2007 that has functions that return AnsiStrings.</p>
<p>My application is compiled in D2009. When it calls the AnsiString functions, it gets back garbage.</p>
<p>I created a little test app/dll to experiment and discovered that if both app and dll are compiled with the same version of Delphi (either 2007 or 2009), there is no problem. But when one is compiled in 2009 and the other 2007, I get garbage.</p>
<p>I've tried including the latest version of FastMM in both projects, but even then the 2009 app cannot read AnsiStrings from the 2007 dll.</p>
<p>Any ideas of what is going wrong here? Is there a way to work around this?</p>
http://stackoverflow.com/questions/1041421/ansistring-return-values-from-a-delphi-2007-dll-in-a-delphi-2009-application/1041615#104161510Answer by Rob Kennedy for AnsiString return values from a Delphi 2007 DLL in a Delphi 2009 applicationRob Kennedy2009-06-25T00:27:20Z2009-06-25T00:27:20Z<p>The internal structure of AnsiStrings changed between Delphi 2007 and Delphi 2009. (Don't get upset; that possibility has been present since day 1.) A Delphi 2009 string maintains a number indicating what code page its data is in.</p>
<p>I recommend you do what every other DLL on Earth does and pass character buffers that the function can fill. The caller should pass a buffer pointer and a number indicating the size of the buffer. (Make sure you're clear about whether you're measuring the size in bytes or characters.) The DLL function fills the buffer, writing no more than the given size, counting the terminating null character.</p>
<p>If the caller doesn't know how many bytes the buffer should be, then you have two options:</p>
<ul>
<li><p>Make the DLL behave specially when the input buffer pointer is null. In that case, have it return the required size so that the caller can allocate that much space and call the function a second time.</p></li>
<li><p>Have the DLL allocate space for itself, with a predetermined method available for the caller to free the buffer later. The DLL can either export a function for freeing buffers that it has allocated, or you can specify some mutually available API function for the caller to use, such as <code>GlobalFree</code>. Your DLL must use the corresponding allocation API, such as <code>GlobalAlloc</code>. (Don't use Delphi's built-in memory-allocation functions like <code>GetMem</code> or <code>New</code>; there's no guarantee that the caller's memory manager will know how to call <code>Free</code> or <code>Dispose</code>, even if it's written in the same language, even if it's written with the same Delphi version.)</p></li>
</ul>
<p>Besides, it's selfish to write a DLL that can only be used by a single language. Write your DLLs in the same style as the Windows API, and you can't go wrong.</p>
http://stackoverflow.com/questions/1041421/ansistring-return-values-from-a-delphi-2007-dll-in-a-delphi-2009-application/1043349#10433492Answer by Cobus Kruger for AnsiString return values from a Delphi 2007 DLL in a Delphi 2009 applicationCobus Kruger2009-06-25T11:10:11Z2009-06-25T11:10:11Z<p>OK, so haven't tried it, so a big fat disclaimer slapped on this one.</p>
<p>In the help viewer, look at the topic (Unicode in RAD Stufio) ms-help://embarcadero.rs2009/devcommon/unicodeinide_xml.html</p>
<p>Returning the Delphi 2007 string to Delphi 2009, you should get two problems.</p>
<p>First, the code page mentioned by Rob. You can set this by declaring another AnsiString and calling StringCodePage on the new AnsiString. Then assign that to the old AnsiString by calling SetCodePage. That should work, but if it doesn't there is hope still.</p>
<p>The second problem is the element size which will be something completely mad. It should be 1, so make it 1. The issue here is that there is no SetElementSize function to lean on.</p>
<p>Try this:</p>
<pre><code>var
ElemSizeAddr: PWord; // Need a two-byte type
BrokenAnsiString: AnsiString; // The patient we are trying to cure
...
ElemSizeAddr := Pointer(PAnsiChar(BrokenAnsiString) - 10);
ElemSizeAddr^ := 1; // The size of the element
</code></pre>
<p>That should do it!</p>
<p>Now if the StringCodePage/SetCodePage thing didn't work, you can do the same as above, changing the line where we get the address to deduct 12, instead of 10.</p>
<p>It has hack scribbled all over it, that's why I love it.</p>
<p>You are going to need to port those DLLs eventually, but this makes the port more manageable.</p>
<p>One final word - depending on how you return the AnsiString (function result, output parameter, etc) you may need to first assign the string to a different AnsiString variable just to make sure there is no trouble with memory being overwritten.</p>
http://stackoverflow.com/questions/1041421/ansistring-return-values-from-a-delphi-2007-dll-in-a-delphi-2009-application/1046675#10466750Answer by Darian Miller for AnsiString return values from a Delphi 2007 DLL in a Delphi 2009 applicationDarian Miller2009-06-25T23:17:17Z2009-06-25T23:17:17Z<p>You'll likely just need to convert the DLL to 2009. According to Embarcadero, the conversion to 2009 is 'easy' and should take you no time at all.</p>
http://stackoverflow.com/questions/1041421/ansistring-return-values-from-a-delphi-2007-dll-in-a-delphi-2009-application/1101478#11014780Answer by Remy Lebeau - TeamB for AnsiString return values from a Delphi 2007 DLL in a Delphi 2009 applicationRemy Lebeau - TeamB2009-07-09T02:01:46Z2009-07-09T02:01:46Z<p>Your DLL should not be returning AnsiString values to begin with. The only way that would work correctly in the first place is if both DLL and EXE were compiled with the ShareMem unit, and even then only if they are compiled with the same Delphi version. D2007's memory manager is not compatible with D2009's memory manager (or any other cross-version use of memory managers), AFAIK.</p>
http://stackoverflow.com/questions/1041421/ansistring-return-values-from-a-delphi-2007-dll-in-a-delphi-2009-application/1101824#11018240Answer by Fabricio Araujo for AnsiString return values from a Delphi 2007 DLL in a Delphi 2009 applicationFabricio Araujo2009-07-09T04:22:22Z2009-07-09T04:22:22Z<p>I agree with Rob and Remy here: common Dlls should return PAnsiChar instead
of AnsiStrings.</p>
<p>If the DLL works OK compiled with D2009, why simply doesn't stop compiling it
with D2007 and start compiling it with D2009 once and for all?</p>