home *** CD-ROM | disk | FTP | other *** search
/ DOS/V Power Report 1998 November / VPR9811A.BIN / BENCH / CWSDPMI2 / CWSDPMI2.LZH / SRC.LZH / VALLOC.H < prev    next >
Text File  |  1996-06-15  |  1KB  |  33 lines

  1. /* Copyright (C) 1995,1996 CW Sandmann (sandmann@clio.rice.edu) 1206 Braelinn, Sugarland, TX 77479
  2. ** Copyright (C) 1993 DJ Delorie, 24 Kirsten Ave, Rochester NH 03867-2954
  3. **
  4. ** This file is distributed under the terms listed in the document
  5. ** "copying.cws", available from CW Sandmann at the address above.
  6. ** A copy of "copying.cws" should accompany this file; if not, a copy
  7. ** should be available from where this file was obtained.  This file
  8. ** may not be distributed without a verbatim copy of "copying.cws".
  9. **
  10. ** This file is distributed WITHOUT ANY WARRANTY; without even the implied
  11. ** warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  12. */
  13.  
  14. /*
  15. ** These functions deal with page *numbers*
  16. **  pn << 8  = segment number
  17. **  pn << 12 = physical address
  18. **  pn << 24 = seg:ofs
  19. */
  20.  
  21. void valloc_init(void);
  22. void valloc_uninit(void);
  23.  
  24. unsigned valloc(void);
  25. unsigned valloc_640(void);
  26. int vfree(word16 pn);
  27.  
  28. void valloc_shrink_rmem(int pages);
  29.  
  30. /* These return *pages* not bytes, and don't get called in DPMI mode */
  31. unsigned valloc_max_size(void);
  32. unsigned valloc_used(void);
  33.