home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Club Amiga de Montreal - CAM
/
CAM_CD_1.iso
/
files
/
502b.lha
/
PCQ_v1.2
/
Include
/
Utils
/
PCQMemory.i
< prev
next >
Wrap
Text File
|
1991-05-07
|
501b
|
26 lines
{
PCQMemory.i of PCQ Pascal
These routines allocate and deallocate so-called PCQ memory
from the system. They are included for compatibility with
Turbo Pascal, and in future versions of PCQ they'll be
standard procedures.
}
{
Allocate some system memory, and place the result in p.
}
Procedure GetMem(var p : Address; Size : Integer);
External;
{
Free some memory allocated through GetMem
}
Procedure FreePCQMem(var p : Address; Size : Integer);
External;