home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 8 / CDASC08.ISO / VRAC / C3FAXDEM.ZIP / INSTALL.DOC < prev    next >
Text File  |  1993-08-28  |  1KB  |  48 lines

  1. Adding C3FAX to your Application:
  2.  
  3. Generator Procedure:
  4.  
  5.           1. Load your application.
  6.  
  7.           2. Change to Module View
  8.  
  9.           3. Press Insert to add a Module.  Enter C3FAX.LIB as the
  10.              module name.  Enter a description.  Check the EXTERNAL
  11.              OBJECT MODULE button.  Enter C3FAX.INC as the include file.
  12.  
  13.           4. In the Global Settings / Embedded Source / Data Section add:
  14.              INCLUDE( 'C3FAX.EQU' )
  15.  
  16.           5. In the Project Properties Screen / Module Settings modify the
  17.              C3FAX.LIB line to read %clapfx%C3FAX.LIB.
  18.  
  19. Hand Code:
  20.  
  21.           1. Add C3FAX.INC as an include in your MAP structure. i.e.
  22.                   MAP
  23.                      ProcA
  24.                      Module('ModA')
  25.                        FuncA
  26.                      .
  27.                      include('C3FAX.INC')
  28.                   .
  29.  
  30.           2. Add C3FAX.EQU as an include in your DATA section (before
  31.              the code statement) i.e
  32.  
  33.                  TestVer   equate(1)
  34.                  .
  35.                  .
  36.  
  37.                  include('C3FAX.EQU')
  38.                  .
  39.                  .
  40.  
  41.                  code
  42.  
  43.           3. Add the line %clapfx%C3FAX.LIB to your Project / Modules.
  44.  
  45. For either method ???C3FAX.LIB and ???C3FAX.DLL must be in a directory pointed
  46. to by the CLARION.RED file.  (i.e. \CLARION3)
  47.  
  48.