home *** CD-ROM | disk | FTP | other *** search
- /******************************************************************************
- * EMS - expand memory support routines. *
- * *
- * Written by Gershon Elber, Dec. 1990 *
- *******************************************************************************
- * History: *
- * 9 Dec 90 - Version 1.0 by Gershon Elber. *
- ******************************************************************************/
-
- #ifndef INTR_EMS_H
- #define INTR_EMS_H
-
- IntrBType EMSDetected(void);
- unsigned int EMSSegment(void);
- int EMSAlloc(int NumPages);
- void *EMSMap(int EMSHandle, int LogicPageNum, int PhysicPageNum);
- void EMSFree(int EMSHandle);
-
- #endif /* INTR_EMS_H */
-