home *** CD-ROM | disk | FTP | other *** search
-
- Using dCLIP with the FUNCKY library
- ------------------------------------
-
- FUNCKY is a library written in ASM for Clipper. FUNCKY modifies some of
- the routines in the Clipper library, therefore the FUNCKY.OBJ file must
- be listed in the FILE list after the OVER_CL.OBJ file.
-
- The FUNCKY.LIB library must be listed in the LIB list AFTER the CLIPPER.LIB
- library and BEFORE the EXTEND.LIB library.
-
- See the DCLIPFUN.LNK and DCRUNFUN.LNK files for examples of how to use
- FUNCKY with dCLIP.
-
-
- How to create a DCLIP Developer's Engine for FUNCKY
- ----------------------------------------------------
-
- 1. Declare the EXTERNALS for the desired functions from the FUNCKY.LIB
- in the DCLIPFUN.PRG file.
-
- 2. Compile the file DCLIPFUN.PRG as follows:
-
- CLIPPER DCLIPFUN -m -l
-
- 3. Build the DCLIPFUN.EXE Engine as follows:
-
- PLINK86 @DCLIPFUN
-
-
- How to create a DCLIPRUN Runtime Engine for FUNCKY
- ---------------------------------------------------
-
- 1. Declare the EXTERNALS for the desired functions from the FUNCKY.LIB
- in the DCRUNFUN.PRG file.
-
- 2. Compile the file DCRUNFUN.PRG as follows:
-
- CLIPPER DCRUNFUN -m -l
-
- 2. Build the DCRUNFUN.EXE Engine as follows:
-
- PLINK86 @DCRUNFUN
-
-