home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / hdk11l.zip / HDKLIB.HDF < prev    next >
Text File  |  1994-01-08  |  1KB  |  35 lines

  1. ;******************************************************************************
  2. ;                                   hdklib                                    *
  3. ; this is the standard HDK 11.0+ "system" extention library, this library     *
  4. ; adds functionality to HDK by adding target "specific" userlink template     *
  5. ; extentions that can simplify help development.                              *
  6. ;                                                                             *
  7. ; The library is built from the following components :                        *
  8. ;                                                                             *
  9. ; 1. VWRLIB - Multimedia Viewer Specific support                              *
  10. ; 2. RTFLIB - RTF Targets common text support                                 *
  11. ; 3. IPFLIB - IPF OS/2 Specific Extention support                             *
  12. ; 4. WWWLIB - HTML Target support                                             *
  13. ;******************************************************************************
  14.  
  15. .ifdef viewer
  16. .include vwrlib.hdf
  17. .endif
  18.  
  19. .ifdef rtfbased
  20. .include rtflib.hdf
  21. .endif
  22.  
  23. .ifdef os2
  24. .include ipflib.hdf
  25. .endif
  26.  
  27. .ifdef www
  28. .include wwwlib.ipf
  29. .endif
  30.  
  31.  
  32.  
  33.  
  34.  
  35.