home *** CD-ROM | disk | FTP | other *** search
/ C!T ROM 2 / ctrom_ii_b.zip / ctrom_ii_b / PROGRAM / CLIPPER / PKB / README.TXT < prev   
Text File  |  1993-01-29  |  3KB  |  77 lines

  1.       Author: Kevin S. Gallagher
  2.    CopyRight: Gallagher Computing
  3.     Language: Clipper 5.01 w/o any patches ie. since CA purchased Clipper
  4.         Date: 01/30/93
  5.  
  6.    
  7.    You may use all code included as long my name appears in them
  8.    You may place your name in the header if modified.
  9.    No monie should be exchanged for said code
  10.    
  11.    This utility was created to backup all my source code in one or
  12.    more directories for one project.
  13.    
  14.    *  Has only been tested with PKZIP v2.xx
  15.    
  16.    * In makezip.prg there is a STATIC array STABLE, which should be
  17.      filled with files to include in the final zipfile which would
  18.      be needed to make the project:
  19.      
  20.      example:
  21.      Say you want to backup a project that was created with NANFOR.LIB
  22.      version 2.0, and did not backup this version of the library, you
  23.      then delete NANFOR.LIB and a new version comes out with different
  24.      structures for using the functions. You could recode or backup the
  25.      present version of the library. Another file that would be nice to
  26.      include  if you were using BORLAND's programmers editor BRIEF is
  27.      'STATE.RST' so that it could restore the environment of the editor
  28.      to were you left off:
  29.      
  30.      STATIC stable {"C:\BRIEF\STATE.RST","C:\CLIPPER5\LIB\NANFOR.LIB", ;
  31.                     "C:\INCLUDE\FTINT86","C:\OBJ\MYOBJ.OBJ"            }
  32.    
  33.    
  34.      Note: If Stable == {} it is passed over for processing
  35.        
  36.    
  37.    * By typing MAKEZIP the program will create a unique filename for 
  38.      compressing your files, or pass a name along to manually override
  39.      the default/unique name (If overriding no errorchecking is done).
  40.      
  41.    * ZipName UDF     --> created the unique name
  42.    
  43.    * ZipTest UDF     --> evaluates PKZIP v2.00 return codes
  44.    
  45.    * Clearme UDF     --> dummy screen clear routine
  46.    
  47.    * TBmenu  UDF     --> TBrowse used  to customize PKzip list file
  48.    
  49.    * listext UDF     --> gets unique fileExtensions to work with in TBmenu
  50.    
  51.    * INIT haha       --> a undocumented first call function of Clipper
  52.    
  53.    * Clipper #define/#xtranslate and #xcommand's were you to keep code cleaner
  54.      looking (at least for meself, and it may be worst for you?)
  55.    
  56.    * MAKEFILE.RMK    --> uses a utility CLIPWARN, which is a frontend to
  57.                          Clipper. If you do not have it:
  58.                          Replace CLIPWARN with CLIPPER
  59.                          and
  60.                          replace:
  61.                          FLAGS = /m /n /a /w /beep /log:error.log
  62.                          with
  63.                          FLAGS = /m /n /a /w
  64.    
  65.    * FUNCTION CALLS  --> NANFOR.LIB 2.1 FT_SINKEY(), FT_SHADOW(), UDC MENU TO
  66.                          BLINKER    2.1 SWAP FUNCTIONS
  67.                          
  68.                          
  69.                          FT_SINKEY() can be replaced with INKEY()
  70.                          FT_SHADOW() can be UNDEFINED with NANNY in header file
  71.                          MENU TO     can be removed by removal of COLOR parm
  72.                          
  73.                          If NANFOR.LIB is not  used then remove FTMENUTO.CH
  74.                          from MAKEZIP.H
  75.                          
  76.                          
  77.