Registriert seit: 21. Jun 2002
602 Beiträge
|
Re: GetMem -Funktion geht nicht
25. Mär 2004, 15:18
GetMem() ist eine Prozedur.
Delphi-Quellcode:
try
GetMem(YPosArray, cxImage * 2 * SizeOf(Integer));
Getmem(PosArrayRect, cyImage * 2 * SizeOf(Integer));
except
on EOutOfMemory do
ShowMessage('Out of Memory');
end;
-- Crucifixion?
-- Yes.
-- Good. Out of the door, line on the left, one cross each.
|