/* * $Id: pcifzcal.h,v 1.1 1999/01/06 23:25:51 oraforms Exp $ */ /* Copyright (c) 1993 by Oracle Corporation */ /* NAME IFZCAL.H -- SQL*Forms 4.0 (Runform) CALl interface prototype DESCRIPTION This module contains the prototype for the C program entry point to runform. PUBLIC FUNCTION(S) PRIVATE FUNCTION(S) RETURNS EX_SUCC, EX_WARN, or EX_FAIL NOTES - ifzcal is used to call SQL*Forms from any C program that is linked with SQL*Forms (Run Form). ifzcal takes two argument, a string, and a length. The string is identical to the command one would use to invoke runform from the command line. The length is the length of the command line. Example: error = ifzcal("runform40 ... ", length); MODIFIED (MM/DD/YY) rsadeghi 05/21/93 - Creation */ #ifndef IFZCAL #define IFZCAL int ifzcal(/*_ char *, int _*/); #endif /* IFZCAL */