home *** CD-ROM | disk | FTP | other *** search
/ AMIGA PD 1 / AMIGA-PD-1.iso / Programme_zum_Heft / Programmieren / Kurztests / PascalPCQ / Include / Utils / PCQMemory.i < prev    next >
Text File  |  1991-04-17  |  501b  |  26 lines

  1. {
  2.     PCQMemory.i of PCQ Pascal
  3.  
  4.     These routines allocate and deallocate so-called PCQ memory
  5.     from the system.  They are included for compatibility with
  6.     Turbo Pascal, and in future versions of PCQ they'll be
  7.     standard procedures.
  8. }
  9.  
  10.  
  11. {
  12.     Allocate some system memory, and place the result in p.
  13. }
  14.  
  15. Procedure GetMem(var p : Address; Size : Integer);
  16.     External;
  17.  
  18. {
  19.     Free some memory allocated through GetMem
  20. }
  21.  
  22. Procedure FreePCQMem(var p : Address; Size : Integer);
  23.     External;
  24.  
  25.  
  26.