home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 5 / 05.iso / a / a076 / 3.img / DCLIPDEV / FUNCKY.ZIP / FUNCKY.DOC < prev   
Encoding:
Text File  |  1989-06-08  |  1.3 KB  |  46 lines

  1.  
  2. Using dCLIP with the FUNCKY library
  3. ------------------------------------
  4.  
  5. FUNCKY is a library written in ASM for Clipper.  FUNCKY modifies some of
  6. the routines in the Clipper library, therefore the FUNCKY.OBJ file must
  7. be listed in the FILE list after the OVER_CL.OBJ file.
  8.  
  9. The FUNCKY.LIB library must be listed in the LIB list AFTER the CLIPPER.LIB
  10. library and BEFORE the EXTEND.LIB library.
  11.  
  12. See the DCLIPFUN.LNK and DCRUNFUN.LNK files for examples of how to use
  13. FUNCKY with dCLIP.
  14.  
  15.  
  16. How to create a DCLIP Developer's Engine for FUNCKY
  17. ----------------------------------------------------
  18.  
  19. 1. Declare the EXTERNALS for the desired functions from the FUNCKY.LIB
  20.    in the DCLIPFUN.PRG file.
  21.  
  22. 2. Compile the file DCLIPFUN.PRG as follows:
  23.  
  24.    CLIPPER DCLIPFUN -m -l
  25.  
  26. 3. Build the DCLIPFUN.EXE Engine as follows:
  27.  
  28.    PLINK86 @DCLIPFUN
  29.  
  30.  
  31. How to create a DCLIPRUN Runtime Engine for FUNCKY
  32. ---------------------------------------------------
  33.  
  34. 1. Declare the EXTERNALS for the desired functions from the FUNCKY.LIB
  35.    in the DCRUNFUN.PRG file.
  36.  
  37. 2. Compile the file DCRUNFUN.PRG as follows:
  38.  
  39.    CLIPPER DCRUNFUN -m -l
  40.  
  41. 2. Build the DCRUNFUN.EXE Engine as follows:
  42.  
  43.    PLINK86 @DCRUNFUN
  44.  
  45.  
  46.