Registriert seit: 14. Apr 2003
Ort: Stuttgart
1.701 Beiträge
Delphi 7 Professional
|
AW: Paradoxes verhalten beim Aufruf einer C++ DLL aus Delphi
4. Nov 2010, 13:19
Array of PChar
ist nicht kompatibel mit .
Benutze stattdessen
Delphi-Quellcode:
type
TSecSigner_AssignDocuments =
function( inArrDocs : PPChar;
inIDocCount : Integer)
: Integer; cdecl;
und
lIResult := SecSigner_AssignDocuments(@lArrDocs, lICount);
|