home *** CD-ROM | disk | FTP | other *** search
/ ProfitPress Mega CDROM2 …eeware (MSDOS)(1992)(Eng) / ProfitPress-MegaCDROM2.B6I / GRAPHICS / PLOT / INTRLIB1.ZIP / INTR_EMS.H < prev    next >
Encoding:
C/C++ Source or Header  |  1990-12-09  |  704 b   |  20 lines

  1. /******************************************************************************
  2. * EMS - expand memory support routines.                          *
  3. *                                          *
  4. *                    Written by Gershon Elber,  Dec. 1990  *
  5. *******************************************************************************
  6. * History:                                      *
  7. *  9 Dec 90 - Version 1.0 by Gershon Elber.                      *
  8. ******************************************************************************/
  9.  
  10. #ifndef INTR_EMS_H
  11. #define INTR_EMS_H
  12.  
  13. IntrBType EMSDetected(void);
  14. unsigned int EMSSegment(void);
  15. int EMSAlloc(int NumPages);
  16. void *EMSMap(int EMSHandle, int LogicPageNum, int PhysicPageNum);
  17. void EMSFree(int EMSHandle);
  18.  
  19. #endif /* INTR_EMS_H */
  20.