Registriert seit: 19. Okt 2003
Ort: Peine
300 Beiträge
|
Re: Speicheradresse eine Pointers, Objektes etc. ausgeben la
7. Mär 2005, 22:04
Delphi-Quellcode:
function Init:Integer; stdcall;
var
S:TStrings;
begin
S:=TStringList.Create;
Result:=Integer(@S);
S.Free;
end;
Daniel M. "The WM_NULL message performs no operation. An application sends the WM_NULL message if it wants to post a message that the recipient window will ignore."
|