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

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