home *** CD-ROM | disk | FTP | other *** search
/ The Pier Shareware 6 / The_Pier_Shareware_Number_6_(The_Pier_Exchange)_(1995).iso / 024 / psi110g.zip / XMS.H < prev    next >
C/C++ Source or Header  |  1994-04-17  |  593b  |  27 lines

  1. /*
  2.  *  XMS Driver C Interface Routine Definitions
  3.  */
  4.   
  5. struct  XMS_Move {
  6.     unsigned long Length;
  7.     unsigned int SourceHandle;
  8.     unsigned long SourceOffset;
  9.     unsigned int DestHandle;
  10.     unsigned long DestOffset;
  11. };
  12.   
  13. extern int XMS_Available;
  14.   
  15. unsigned Installed_XMS(void);
  16. int Request_HMA(void);
  17. int Release_HMA(void);
  18. long Request_UMB(unsigned int);
  19. long Release_UMB(unsigned int);
  20. long Query_XMS(void);
  21. long Total_XMS(void);
  22. long Alloc_XMS(unsigned int);
  23. long Free_XMS(unsigned int);
  24. long Move_XMS(struct XMS_Move *);
  25. void Free_Screen_XMS(void);
  26.   
  27.