home *** CD-ROM | disk | FTP | other *** search
/ World of Shareware - Software Farm 2 / wosw_2.zip / wosw_2 / CPROG / VISIONS.ZIP / SHARFORM.H < prev    next >
Text File  |  1990-04-02  |  1KB  |  30 lines

  1. /*------------------------- SHARFORM.H -------------------------*/
  2. /*                                */
  3. /*  This file contains definitions used for the form library    */
  4. /*  that are needed both internally by the library and also    */
  5. /*  by the user of the library.                    */
  6. /*                                */
  7. /*         Copyright 1990 Dan Vogel & David Bernazzani        */
  8. /*                                */
  9. /*                                */
  10. /*        Revision History                */
  11. /*                                */
  12. /*  03/05/90   DCV    Release.                */
  13. /*                                */
  14. /*--------------------------------------------------------------*/
  15.  
  16. #include "USERWIND.H"            /* Window Library Definitions */
  17. #include "USERLIST.H"            /* List Library Definitions */
  18. #include "SHARCOMP.H"            /* Compiler Specific Definitions */
  19.  
  20.             /* Error Return Values */
  21.  
  22. #define    USER_ABORT            -1  /* User aborted out of a form */
  23. #define    OUT_OF_FORM_HEAP    -301  /* No heap available for form definition */
  24. #define    OUT_OF_FIELD_HEAP   -302  /* No heap available for field definition */
  25. #define    BAD_FORM_HEAD_PTR   -303  /* Pointer received was not a form head */
  26. #define    BAD_FORM_FIELD_PTR  -304  /* Pointer received was not a form field */
  27. #define    BAD_FORM_TEXT        -305  /* Illegal character rec'vd as data entry */
  28. #define    INVALID_FIELD_ENTRY -306  /* Field contents not legal as modified */
  29.  
  30.