home *** CD-ROM | disk | FTP | other *** search
- /* Copyright (c) 1989 by Oracle Corporation */
-
- /* NAME
- IAPCAL - IAP CALl interface prototype.
-
- FUNCTION
- This module contains the prototype for the c program entry point to IAP.
-
- RETURNS
- EX_SUCC, EX_WARN, or EX_FAIL
-
- NOTES
-
- - iapcal is used to call SQL*Forms from any c program that is
- linked with SQL*Forms (Run Form). Iapcal takes one argument, a string,
- that is identical to the command one would use to invoke runform from
- the commandline. Example:
-
- error = iapcal("runform30 my_application -d scott/tiger");
-
- MODIFIED
- Eicher 10/17/90 - Remove text*
- Markari 03/15/90 - Creation
-
- */
-
- #ifndef IAPCAL
- #define IAPCAL
-
- extern int iapcal (/*_ char * _*/);
-
- #endif
-
-