home *** CD-ROM | disk | FTP | other *** search
/ Collection of Hack-Phreak Scene Programs / cleanhpvac.zip / cleanhpvac / FNTPAK32.ZIP / BASIC.EXE / PACKLIST.BAS < prev   
BASIC Source File  |  1995-08-16  |  4KB  |  121 lines

  1.  
  2.        Packing List:  QuickBASIC, PDS, Visual Basic DOS, and PowerBASIC
  3.  
  4.     ========================================================================
  5.  
  6.     POWERBASIC users:  BE SURE to use the "P" versions of any OBJs we supply.
  7.     For example, use Mouse_P.Obj instead of Mouse.OBJ (in SHAREWARE versions
  8.     use FontPakP.Obj instead of Font_Pak.Lib).
  9.  
  10.     ========================================================================
  11.  
  12.     BEFORE YOU DO ANYTHING ELSE:
  13.  
  14.     Run Everyone.Exe to unpack fonts and OBJ files used in demo programs
  15.     in ALL programming languages!   Here's what you'll unpack:
  16.  
  17.     OldEng_5.F16         \
  18.     Script_3.F16          )  Font Pak font files used in a demo
  19.     BigSanSR.F16         /
  20.  
  21.      HOLLOW9.OBJ         \
  22.     FRAZZL16.OBJ          ) Examples of "callable fonts"
  23.      SCRIPT1.OBJ         /
  24.     
  25.     ========================= REGISTERED Versions
  26.  
  27.     In registered versions, you'll unpack these files when you run
  28.     Everyone.Exe.
  29.  
  30.     FONT_PAK.LIB         ' LIB file containing "callable fonts" mentioned
  31.                          ' above, PLUS the OBJs listed below :::
  32.  
  33.        FONTS.OBJ         ' individual OBJs that contained in Font_Pak.Lib
  34.        VIDEO.OBJ
  35.        MOUSE.OBJ         ' PowerBasic users:  use Mouse_PB.Obj (NOT Mouse.Obj!)
  36.      MOUSE_P.OBJ
  37.     GFX_FONT.OBJ
  38.     LDCURSOR.OBJ
  39.     LDGFXCUR.OBJ
  40.     LDSYMBOL.OBJ
  41.  
  42.     ========================= SHAREWARE Versions
  43.  
  44.     In registered versions separate OBJs are provided so programmers can
  45.     LINK only what their program needs (and improve granularity).
  46.  
  47.     Shareware versions are designed to let you easily try out all options.
  48.     Therefore, we include just 1 LIB/OBJ file you need LINK to programs:
  49.  
  50.      FONT_PAK.LIB        ' For Microsoft BASICS and C (medium model)
  51.  
  52.      FONTPAKP.OBJ        ' For PowerBASIC 3.x and Pascal
  53.  
  54.  
  55.     ========================================================================
  56.  
  57.     You unpacked the following files when you ran Basic.Exe
  58.  
  59.     Demo programs
  60.     =============
  61.  
  62.     We strongly urge you to run ALL demo programs (listed below).
  63.  
  64.     FONT_PAK.INC        ' IMPORTANT "include" file declaring Font Pak routines
  65.  
  66.     DEMO_MON.BAS        ' Please run (and read) these IMPORTANT demo programs
  67.     DEMOFNT1.BAS        ' to see how easy it is to change fonts and mouse
  68.     DEMOFNT2.BAS        ' cursor shapes -- in TEXT -or- GRAPHICS modes.
  69.     DEMOBRIT.BAS
  70.     DEMOMOUS.BAS
  71.     DEMO_GFX.BAS
  72.     DEMO_GMS.BAS
  73.     DEMO_SYM.BAS
  74.  
  75.     OnDisk
  76.     ======
  77.  
  78.     ' OnDisk?.? contains function LoadFontFile to load fonts from disk.
  79.     ' Be SURE to use the proper version!
  80.  
  81.       ONDISK.BAS         ' REGISTERED USERS receive this source code
  82.                          ' file they may use in ANY BASIC.
  83.  
  84.                          ' SHAREWARE USERS receive these files.
  85.  
  86.     ONDISK45.OBJ         ' QuickBASIC version of LoadFontFile (near strings)
  87.      ONDISK7.OBJ         ' PDS 7 version (FAR strings!)
  88.     ONDISKVB.OBJ         ' Visual Basic DOS (FAR strings!)
  89.  
  90.       ONDISK.PBU         ' PowerBASIC
  91.  
  92.  
  93.     Microsoft BASICS:  Create a Quick Library
  94.     =========================================
  95.  
  96.     REGISTERED USERS:  You should begin by compiling ONDISK.BAS
  97.     (e.g., bc ondisk /o;) to create ONDISK.OBJ.
  98.  
  99.     Create a .QLB (Quick Library) to use when running our demos.  Here's how:
  100.  
  101.                                                     bqlb45;   <-- QuickBASIC
  102.       link /q font_pak.lib ondisk?, font_pak, nul,  qbxqlb;   <-- PDS 7.x
  103.                        ^^^                          vbdosqlb; <-- VB-DOS
  104.  
  105.     Registered users would replace "ondisk?" with just "ondisk."
  106.  
  107.     Shareware users would replace "ondisk?" with "ondisk45," "ondisk7"
  108.     or "ondiskvb" -- to link the appropriate OBJ for your compiler.
  109.     See the section abpve for what these file names refer to.
  110.  
  111.     Once you create your Quick Library, run our demo programs like this:
  112.  
  113.          qbx
  114.           qb demofnt1 /l font_pak
  115.        vbdos
  116.  
  117.  
  118.     ========================= End Packlist.Bas
  119.  
  120.  
  121.