home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 9 Archive / 09-Archive.zip / lxlt121s.zip / lxLite_src / !readme next >
Text File  |  1997-06-08  |  1KB  |  32 lines

  1. Build instructions
  2.  
  3. 1. lxLite uses one non-standard API function; It may be needed for lxLite to
  4. compile properly to add a line to OS2BASE.PAS: after line
  5.  
  6. function DosQueryModuleName(Module: HModule; cbName: ULong; Name: PChar): ApiRet;
  7.  
  8. you should add this:
  9. function DosReplaceModule(OldModName,NewModName,BackModName: PChar): ApiRet;
  10.  
  11. 2. Because of the same thing, os2lib\ subdirectory contains my .DEF files which
  12. I`m using. It is a compilation of almost all entries (both documented and
  13. undocumented) into most important system DLLs. Create an OS2.LIB from them
  14. (using OS2LIB.CMD) and replace VP`s OS2.LIB with a newer version.
  15.  
  16. 3. The COMMON\ subdirectory contains a number of my commonly-used libraries.
  17. Between them is a improved version of CRT.PAS which:
  18. a) features a speedy screen output (VP`s CRT is pretty slow...)
  19. b) Handles properly input and output redirection. Two additional
  20. boolean variables: RedirInput and RedirOutput are available.
  21.  
  22. 4. Edit MAKE.CMD and set base VP directory as appropiate.
  23.  
  24. 5. Run MAKE.CMD. This should create the directory OUT into which
  25. all output will go. After compilation executables are copied into ..\lxLite\ 
  26. directory.
  27.  
  28. 6. Follow instructions on screen.
  29.  
  30. Enjoy,
  31.  _\ndy
  32.