home *** CD-ROM | disk | FTP | other *** search
/ Power Programming / powerprogramming1994.iso / progtool / graphics / tcxl.arc / TCXLEMS.H < prev    next >
Text File  |  1988-04-14  |  1KB  |  32 lines

  1.  
  2. /*
  3.    ┌──────────────────────────────────────────────────────────────────────────┐
  4.    │                                                                          │
  5.    │  TCXLEMS.H - TCXL (c) 1987, 1988 by Mike Smedley.                        │
  6.    │                                                                          │
  7.    │  This header file contains prototypes of TCXL's Expanded Memory          │
  8.    │  Specification (EMS) functions.                                          │
  9.    │                                                                          │
  10.    └──────────────────────────────────────────────────────────────────────────┘
  11. */
  12.  
  13.  
  14. #if __STDC__
  15. #define _Cdecl
  16. #else
  17. #define _Cdecl cdecl
  18. #endif
  19.  
  20.  
  21. unsigned _Cdecl emsalloc(int numpages);
  22. int      _Cdecl emsdealloc(int emmhandle);
  23. int      _Cdecl emsexist(void);
  24. unsigned _Cdecl emsframe(void);
  25. unsigned _Cdecl emsfree(void);
  26. int      _Cdecl emsmap(int emmhandle,int logpage,int phypage);
  27. int      _Cdecl emsread(void *dest,unsigned emsofs,unsigned numbytes);
  28. unsigned _Cdecl emstotal(void);
  29. char    *_Cdecl emsver(void);
  30. int      _Cdecl emswrite(void *src,unsigned emsofs,unsigned numbytes);
  31. unsigned _Cdecl expmem(void);
  32.