home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / snip9707.zip / XMS.H < prev    next >
C/C++ Source or Header  |  1997-07-05  |  606b  |  25 lines

  1. /* +++Date last modified: 05-Jul-1997 */
  2.  
  3. /*
  4. ** XMS.H
  5. **
  6. ** Header file for Extended Memory routines in XMS.C.
  7. */
  8.  
  9. #ifndef _XMS_H
  10. #define _XMS_H
  11.  
  12. int  XMSinit(void);
  13. int  XMSversion(void);
  14. long XMScoreleft(void);
  15. int  XMSfree(unsigned int handle);
  16. long XMSmemcpy(unsigned int desthandle, long destoff,
  17.                  unsigned int srchandle, long srcoff, long n);
  18. int  DOStoXMSmove(unsigned int desthandle, long destoff,
  19.                  const char *src, int n);
  20. int  XMStoDOSmove(char *dest, unsigned int srchandle, long srcoff, int n);
  21.  
  22. unsigned int XMSalloc(long size);
  23.  
  24. #endif
  25.