home *** CD-ROM | disk | FTP | other *** search
/ PC Extra Super CD 1998 January / PCPLUS131.iso / DJGPP / V2MISC / CSDPMI3S.ZIP / SRC / CWSDPMI / XMS.H < prev   
Encoding:
Text File  |  1996-06-15  |  561 b   |  14 lines

  1. /* Copyright (C) 1995,1996 CW Sandmann (sandmann@clio.rice.edu) 1206 Braelinn, Sugarland, TX 77479
  2.  * xms.h - parts copied from Kent Williams william@umaxc.weeg.uiowa.edu */
  3.  
  4. int xms_installed(void);
  5. int xms_local_enable_a20(void);
  6. int xms_local_disable_a20(void);
  7. int xms_query_extended_memory(void);    /* Returns largest free block */
  8. int xms_emb_allocate(word16 size);
  9. int xms_emb_free(int16 handle);
  10.  
  11. /*returns 32 bit linear address of emb specified by handle, 0 otherwise. */
  12. word32 xms_lock_emb(int16 handle);
  13. int xms_unlock_emb(int16 handle);
  14.