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

  1.  
  2. Using dCLIP with the GET-IT library
  3. ------------------------------------
  4.  
  5. GET-IT is a library written in ASM for Clipper. 
  6.  
  7. The N_ONTICK and N_ONSHIFT functions are used in the dCLIP program
  8. therefore these functions are already provided in the DCLIPDEV.LIB library.
  9. If you are using a newer version of GET-IT or want to use additional 
  10. functions from the library you must build a new .EXE with the files
  11. provided.
  12.  
  13. The GETIT.LIB library must be listed in the LIB list BEFORE the DCLIPDEV.LIB
  14. library.
  15.  
  16. See the DCLIPGET.LNK and DCRUNGET.LNK files for examples of how to use
  17. GET-IT with dCLIP.
  18.  
  19.  
  20. How to create a DCLIP Developer's Engine for GET-IT
  21. ---------------------------------------------------
  22.  
  23. 1. Declare the EXTERNALS for the desired functions from the GETIT.LIB
  24.    in the DCLIPGET.PRG file.
  25.  
  26. 2. Compile the file DCLIPGET.PRG as follows:
  27.  
  28.    CLIPPER DCLIPGET -m -l
  29.  
  30. 3. Build the DCLIPGET.EXE Engine as follows:
  31.  
  32.    PLINK86 @DCLIPGET
  33.  
  34.  
  35. How to create a DCLIPRUN Runtime Engine for GET-IT
  36. ---------------------------------------------------
  37.  
  38. 1. Declare the EXTERNALS for the desired functions from the GETIT.LIB
  39.    in the DCRUNGET.PRG file.
  40.  
  41. 2. Compile the file DCRUNGET.PRG as follows:
  42.  
  43.    CLIPPER DCRUNGET -m -l
  44.  
  45. 2. Build the DCRUNGET.EXE Engine as follows:
  46.  
  47.    PLINK86 @DCRUNGET
  48.  
  49.  
  50.  
  51.