home *** CD-ROM | disk | FTP | other *** search
/ Jason Aller Floppy Collection / 257.img / PRO-C1.ZIP / HELP.ZIP / SUP.H < prev    next >
C/C++ Source or Header  |  1990-05-28  |  1KB  |  43 lines

  1. struct a_line
  2. {
  3.     struct a_line *next;
  4.     struct a_line *prev;
  5.     struct a_line *curr;
  6.     int    index;
  7.     int    deleted;
  8.     char   rec[1];    /* Cannot use 0 - some compilers die */
  9. };
  10.  
  11. # define  ANULL    (struct a_line *)0
  12.  
  13. extern int no_msg;
  14.  
  15.  
  16. # define ADD_CONFIRM     "Add : Confirm ?"
  17.  
  18. # define TRN_COMMIT      "Transaction : Commit ?"
  19. # define TRN_ROLLBACK    "Transaction : Rollback ?"
  20.  
  21. # define UPD_ABANDON     "Update : Abandon Changes ?"
  22. # define UPD_SAVE        "Update : Save Changes ?"
  23.  
  24. # define DEL_CONFIRM     "Delete : Are you sure ?"
  25.  
  26. # define ERR_NOADD       "No Add Permissions"
  27. # define ERR_NOCHG       "No Change Permissions"
  28. # define ERR_NODEL       "No Delete Permissions"
  29. # define ERR_NOINQ       "No Read Permissions"
  30. # define ERR_DELETE      "Fatal : Already Deleted"
  31. # define ERR_NOREC       "Fatal : No Current Record"
  32.  
  33. # define UPD_NOCHG       "Update : No Changes Made"
  34.  
  35. # define NO_CURR_EST     "Could Not Re-establish Current Record"
  36.  
  37. # define TOP_FILE        "Top of File"
  38. # define END_FILE        "End of File"
  39. # define NO_MATCH        "Record Not Found"
  40. # define NO_MORE         "No More Matching Records"
  41. # define F_ERR           "File Error %d"
  42.  
  43.