Search found 1 match

by beprecision
Tue Sep 06, 2011 10:09 pm
Forum: newLISP in the real world
Topic: Handling out param in delphi DLL
Replies: 8
Views: 12449

Re: Handling out param in delphi DLL

Hi! In pdScript DLL interface, there are not used Delphi strings, but buffers. PAnsiChar (and PChar, PWideChar, etc.) is declared in Delphi to mimic the C convention and also to allow transferring data between non Delphi application and Delphi DLL (which is our case). So, let me briefly explain how ...