home *** CD-ROM | disk | FTP | other *** search
- /*------------------------- SHARFORM.H -------------------------*/
- /* */
- /* This file contains definitions used for the form library */
- /* that are needed both internally by the library and also */
- /* by the user of the library. */
- /* */
- /* Copyright 1990 Dan Vogel & David Bernazzani */
- /* */
- /* */
- /* Revision History */
- /* */
- /* 03/05/90 DCV Release. */
- /* */
- /*--------------------------------------------------------------*/
-
- #include "USERWIND.H" /* Window Library Definitions */
- #include "USERLIST.H" /* List Library Definitions */
- #include "SHARCOMP.H" /* Compiler Specific Definitions */
-
- /* Error Return Values */
-
- #define USER_ABORT -1 /* User aborted out of a form */
- #define OUT_OF_FORM_HEAP -301 /* No heap available for form definition */
- #define OUT_OF_FIELD_HEAP -302 /* No heap available for field definition */
- #define BAD_FORM_HEAD_PTR -303 /* Pointer received was not a form head */
- #define BAD_FORM_FIELD_PTR -304 /* Pointer received was not a form field */
- #define BAD_FORM_TEXT -305 /* Illegal character rec'vd as data entry */
- #define INVALID_FIELD_ENTRY -306 /* Field contents not legal as modified */
-
-