home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c005 / 1.ddi / BMEMORY.H < prev    next >
Encoding:
Text File  |  1986-08-05  |  870 b   |  25 lines

  1. /**
  2. *
  3. *   BMEMORY.H -- Header file for C TOOLS PLUS Memory Management Functions
  4. *
  5. *   Version 3.0   (C)Copyright Blaise Computing Inc.  1986
  6. *
  7. **/
  8.  
  9.     /* Function declarations                          */
  10.  
  11. int  mmtotal(int *);              /* Report total installed       */
  12.                       /* memory               */
  13.                       /*                  */
  14. int  mmavail(int *,int *,long *);     /* Report available memory      */
  15.                       /*                  */
  16. int  mmalloc(unsigned,              /* Allocate a memory block      */
  17.          unsigned *,unsigned *);  /*                  */
  18.                       /*                  */
  19. int  mmfree(unsigned);              /* Free allocated memory          */
  20.                       /*                  */
  21. int  mmsetblk(unsigned,           /* Shrink or grow block of      */
  22.           unsigned,unsigned *);   /* allocated memory          */
  23.                       /*                  */
  24. int  mmshrink(unsigned *);          /* Release unused memory          */
  25.