home *** CD-ROM | disk | FTP | other *** search
- /**
- *
- * BMEMORY.H -- Header file for C TOOLS PLUS Memory Management Functions
- *
- * Version 3.0 (C)Copyright Blaise Computing Inc. 1986
- *
- **/
-
- /* Function declarations */
-
- int mmtotal(int *); /* Report total installed */
- /* memory */
- /* */
- int mmavail(int *,int *,long *); /* Report available memory */
- /* */
- int mmalloc(unsigned, /* Allocate a memory block */
- unsigned *,unsigned *); /* */
- /* */
- int mmfree(unsigned); /* Free allocated memory */
- /* */
- int mmsetblk(unsigned, /* Shrink or grow block of */
- unsigned,unsigned *); /* allocated memory */
- /* */
- int mmshrink(unsigned *); /* Release unused memory */