home *** CD-ROM | disk | FTP | other *** search
/ BCI NET 2 / BCI NET 2.iso / archives / programming / languages / pcq_incl3v1.lha / Utils / PCQMemory.i < prev    next >
Encoding:
Text File  |  1994-04-15  |  501 b   |  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.