home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c100 / 2.ddi / XMSCPP.ZIP / README.TXT next >
Encoding:
Text File  |  1990-08-19  |  1.9 KB  |  50 lines

  1. -------------------------------
  2. Turbo C++ Library for
  3. Accessing Extended Memory Using
  4. Microsoft's HIMEM.SYS
  5. by Richard Vuduc
  6. (C) 1990
  7. -------------------------------
  8.  
  9. Well, I'm glad to see you followed directions and are now
  10. 'reading.me'.  Here's a list of files included in this package
  11. (XMSCPP.ZIP):
  12.  
  13.     - XMSCPP.LIB        // Turbo C++ linkable routines for accessing
  14.                            extended memory.
  15.     - XMS.H             // Turbo C++ XMS header file
  16.     - README.TXT        // That would be this file
  17.     - XMSCPP.TXT        // Documentation on how to use the library
  18.     - XMSDEMO.CPP       // Library demonstration program source code
  19.     - XMSDEMO.EXE       // Library demonstration executable
  20.  
  21. Hardware and Software Requirements:
  22. -----------------------------------
  23. You need a 286 or above IBM AT compatible, enough conventional memory
  24. to run the Turbo C++ compiler, and 64k of extended memory to run the
  25. demonstration program.
  26.  
  27. You also need to install HIMEM.SYS.  I haven't worked out any
  28. distribution agreements with Microsoft, but you can get it from them
  29. in HIMEM.ARC on MSSYS on CompuServe.  HIMEM is also bundled with
  30. Microsoft Windows 286 and MS Windows 3.0 (I don't know about Windows
  31. 386, but I imagine it's in there, too).
  32.  
  33. Usage:
  34. ------
  35. This library was designed to run in the small memory model - I will
  36. release the other models soon (I've got to do some back to school
  37. shopping and also work, so time is kind of tight).  You can reach me
  38. about any technical problems or any comments on improvements at my
  39. CIS Account: Richard Vuduc, 70022,1332.
  40.  
  41. To link this with your programs, just type:
  42.     'tcc xxxxx.cpp xmscpp.lib'
  43.  
  44. where xxxxx.cpp is the name of your source.  So, to compile the
  45. demonstration program, just type:
  46.     'tcc xmsdemo.cpp xmscpp.lib'
  47.  
  48. You can also link xmscpp.lib into the standard library.  See the
  49. manual for details.
  50.