home *** CD-ROM | disk | FTP | other *** search
/ World of Shareware - Software Farm 2 / wosw_2.zip / wosw_2 / QBAS / QB4WIN32.ZIP / W32LIB.BAT < prev   
DOS Batch File  |  1990-09-22  |  1KB  |  40 lines

  1. echo off
  2. Echo This file creates W32.QLB and W32.LIB from the W32 object files.
  3. Echo You may omit some of the object files to make the library smaller.
  4. Echo W32.QLB is about 15000 bytes with all of them. ALWAYS include W32.OBJ.
  5. Echo If PrntS.obj is included, you must also inlcude Prnt.obj.
  6. echo .
  7. echo List of the calls in each object file:
  8. echo .
  9. echo   W32.OBJ:     Prnt.Obj    PrntS.obj    SaveW.obj   Scroll.obj  Misc.obj
  10. echo .
  11. echo   Attribute    Prnt        PrntS        CloseLastW  KLS         DebugW
  12. echo   Adapter      Printt      PrntUsingS   CloseW      ScrollL     ReadScreen
  13. echo   Border       PrntW                    CloseWgra   ScrollR     Dump1
  14. echo   InitW        PrintW                   ConvertTG   ScrollU     Refresh
  15. echo   DefBorder    Tabb                     FillW       ScrollD
  16. echo   Int10                                 OpenW
  17. echo   Int3                                  SaveW
  18. echo   Kolor                                 SaveWgra
  19. echo   Lokate                                WSize
  20. echo   MapMask                               WSizeGra
  21. echo   Monochrome
  22. echo   SetViewPage
  23. echo   SetViewW
  24. echo   SnowCheckingOn
  25. echo   SnowCheckingOff
  26. Pause
  27.  
  28. echo on
  29.  
  30. del w32.QLB
  31.  
  32. Link /q  W32 scroll misc savew prnt prnts, W32.QLB,,bQLB41.lib;
  33.  
  34. Rem Create  .lib file
  35.  
  36. del w32.Lib
  37.  
  38. Lib w32.lib + w32.obj + scroll.obj + misc.obj + savew.obj + prnt.obj +prnts.obj;
  39.  
  40.