/*** MODULE FORMS$C_DEFINITIONS.H ***/ /*** IDENT V1.0-000 ***/ /* */ /************************************************************************** */ /* Copyright © 1988, 1989, 1991, 1994 by * */ /* DIGITAL Equipment Corporation, Maynard, Mass. * */ /* * */ /* This software is furnished under a license and may be used and copied * */ /* only in accordance with the terms of such license and with the * */ /* inclusion of the above copyright notice. This software or any other * */ /* copies thereof may not be provided or otherwise made available to any * */ /* other person. No title to or ownership of the software is hereby * */ /* transferred. * */ /* * */ /* The information in this software is subject to change without notice * */ /* and should not be construed as a commitment by DIGITAL Equipment * */ /* Corporation. * */ /* * */ /* DIGITAL assumes no responsibility for the use or reliability of its * */ /* software on equipment which is not supplied by DIGITAL. * */ /* * */ /************************************************************************** */ /* */ /* */ /* FACILITY: DECforms V2.2. */ /* */ /* ABSTRACT: Definitions file for DECforms applications written in C.*/ /* */ /* MODIFIED: Aug-1998 CZ Modified FORMS$AR_FORM_TABLE for DECC */ /* option /EXTERNAL_MODEL=COMMON_BLOCK */ /* */ /* */ /* */ /* FORMS$AR_FORM_TABLE declaration. */ /* */ #if defined(__DECC_MODE_VAXC) || defined(VAXC) globalref long int forms$ar_form_table; #else #pragma extern_model __save #pragma extern_model __relaxed_refdef extern long int forms$ar_form_table; #pragma extern_model __restore #endif /* */ /* Item codes for REQUEST_OPTIONS item lists. */ /* */ #define FORMS$K_LANGUAGE 1 #define FORMS$K_IMAGE 2 #define FORMS$K_TRACEFILE 3 #define FORMS$K_TRACE 4 #define FORMS$K_PRINTFILE 5 #define FORMS$K_EFN 6 #define FORMS$K_RSB 7 #define FORMS$K_ASTADR 8 #define FORMS$K_ASTPRM 9 #define FORMS$K_ERROR_ROUTINE 10 #define FORMS$K_ERROR_PARAMETER 11 #define FORMS$K_NO_TERM_IO 12 #define FORMS$K_SELECTION_LABEL 13 #define FORMS$K_ERROR_ITEMS_NOT_SAVED 14 #define FORMS$K_STACK_SIZE 15 /* */ /* DECforms routines. */ /* */ long int forms$enable() ; long int forms$send() ; long int forms$receive() ; long int forms$transceive() ; long int forms$disable() ; long int forms$cancel() ;