home *** CD-ROM | disk | FTP | other *** search
- /* Copyright (c) 1990 by Oracle Corporation */
-
- /* NAME
- IFUSER.H -- SQL*Forms User routine interface
-
- FUNCTION
- Provides prototypes, macros, constants, and types for user exit
- callbacks to SQL*Forms (Runform).
-
- NOTES
- Watch out for name conflicts on the macros.
-
- MODIFIED
- Stein 08/16/90 - Creation
- */
-
- #ifndef IFUSER
- #define IFUSER
-
- /*
- ** IFURC_xxx -- SQL*Forms User Return Codes
- **
- ** These values are returned by the various entry points described
- ** below.
- */
- #define IFURC_SUCCESS 0 /* The call was successful */
- #define IFURC_FAILURE 1 /* The call failed */
- #define IFURC_UNKNOWN 2 /* The operation code is unknown */
-
-
- /*
- ** IFUTRM -- SQL*Forms User TeRMinal operations
- **
- ** This routine can be called by user exits to perform various terminal
- ** operations. The operation codes are given by the IFUOP_xxx constants.
- **
- ** This routine takes a variable number of arguments based on the
- ** operation performed. For each operation, the arguments required are
- ** described below with the operation constant.
- **
- ** One of the IFURC_xxx return codes is returned by this function. The
- ** details are given below for each operation.
- */
- extern int ifutrm(/*_ int, ... _*/);
-
-
- /*
- ** IFUOP_xxx -- Operation constants
- **
- ** These constants are used by user exits to tell SQL*Forms (Runform)
- ** what operation should performed. These constants are given to the
- ** various SQL*Forms entry points.
- **
- ** For each constant, the entry point to use is given and a prototype
- ** for its arguments (if any) is described.
- */
-
- #define IFUOP_SUSPEND 1
- /*
- ifutrm(IFUOP_SUSPEND)
-
- Suspend SQL*Forms' usage of the terminal and reset it to its default
- state. This is typically used in a user exit where some terminal
- interaction is necessary (printing and reading characters or starting
- another process such as an editor). Before returning to SQL*Forms,
- the terminal should be "resumed" with the IFUOP_RESUME operation
- (described below).
-
- NOTE: the terminal should not be suspended if the user exit is going
- to use the SQL*Forms user exit window package.
-
- RETURNS: always returns IFURC_SUCCESS
- */
-
- #define IFUOP_RESUME 2
- /*
- ifutrm(IFUOP_RESUME)
-
- Resume SQL*Forms' usage of the terminal. This must be called before
- returning to SQL*Forms if the terminal has been suspended with the
- IFUOP_SUSPEND operation.
-
- RETURNS: always returns IFURC_SUCCESS
- */
-
-
- #endif /* IFUSER */
-