home *** CD-ROM | disk | FTP | other *** search
- /*
- dosmcb.h
- Stealth Bomber Version 2.2
-
- Kevin Dean
- Fairview Mall P.O. Box 55074
- 1800 Sheppard Avenue East
- Willowdale, Ontario
- CANADA M2J 5B9
- CompuServe ID: 76336,3114
-
- February 10, 1992
-
- This is the interface to the DOS memory control block routines.
-
- This code is public domain.
- */
-
-
- /* DOS memory control block structure. */
- typedef struct
- {
- char id; /* MCB ID (0x4D for all but last which is 0x5A). */
- unsigned psp; /* PSP of the program that owns the block. */
- unsigned size; /* Size of allocated memory in paragraphs. */
- } MCB;
-
-
- MCB far *getmcb(void);
- MCB far *nextmcb(MCB far *thismcb);
- MCB far *mcb_owner(const void far *ptr);
-