Registriert seit: 18. Aug 2004
Ort: Edewecht
712 Beiträge
Delphi 5 Professional
|
Re: Invalid Pointer Operation.
14. Dez 2004, 14:48
Versuche mal folgendes...
Delphi-Quellcode:
library MyLib;
function MyFunction(const S: WideString): WideString; safecall;
begin
{...}
Result := MyString;
{...}
end;
exports
MyFunction;
begin
end.
Delphi-Quellcode:
function MyFunction(const S: WideString): WideString; safecall;
implementation
function MyFunction; external 'MyLib.dll';
Konnte bis jetzt noch keine Probleme mit WideString und safecall feststellen.
Ciao, Sprint.
"I don't know what I am doing, but I am sure I am having fun!"
|