home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 5 / 05.iso / a / a523 / 11.ddi / IAPCAL.H < prev    next >
Encoding:
C/C++ Source or Header  |  1990-11-09  |  787 b   |  34 lines

  1. /* Copyright (c) 1989 by Oracle Corporation */
  2.  
  3. /* NAME
  4.      IAPCAL - IAP CALl interface prototype.
  5.   
  6.    FUNCTION
  7.      This module contains the prototype for the c program entry point to IAP.
  8.  
  9.    RETURNS
  10.       EX_SUCC, EX_WARN, or EX_FAIL
  11.  
  12.    NOTES
  13.  
  14.       - iapcal is used to call SQL*Forms from any c program that is
  15.         linked with SQL*Forms (Run Form).  Iapcal takes one argument, a string,
  16.         that is identical to the command one would use to invoke runform from
  17.         the commandline.  Example:
  18.  
  19.         error = iapcal("runform30 my_application -d scott/tiger");
  20.  
  21.     MODIFIED
  22.       Eicher     10/17/90 - Remove text*
  23.       Markari    03/15/90 - Creation
  24.  
  25. */
  26.  
  27. #ifndef IAPCAL
  28. #define IAPCAL
  29.  
  30. extern int iapcal (/*_ char * _*/);
  31.  
  32. #endif
  33.  
  34.