home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Jason Aller Floppy Collection
/
257.img
/
PRO-C1.ZIP
/
HELP.ZIP
/
SUP.H
< prev
next >
Wrap
C/C++ Source or Header
|
1990-05-28
|
1KB
|
43 lines
struct a_line
{
struct a_line *next;
struct a_line *prev;
struct a_line *curr;
int index;
int deleted;
char rec[1]; /* Cannot use 0 - some compilers die */
};
# define ANULL (struct a_line *)0
extern int no_msg;
# define ADD_CONFIRM "Add : Confirm ?"
# define TRN_COMMIT "Transaction : Commit ?"
# define TRN_ROLLBACK "Transaction : Rollback ?"
# define UPD_ABANDON "Update : Abandon Changes ?"
# define UPD_SAVE "Update : Save Changes ?"
# define DEL_CONFIRM "Delete : Are you sure ?"
# define ERR_NOADD "No Add Permissions"
# define ERR_NOCHG "No Change Permissions"
# define ERR_NODEL "No Delete Permissions"
# define ERR_NOINQ "No Read Permissions"
# define ERR_DELETE "Fatal : Already Deleted"
# define ERR_NOREC "Fatal : No Current Record"
# define UPD_NOCHG "Update : No Changes Made"
# define NO_CURR_EST "Could Not Re-establish Current Record"
# define TOP_FILE "Top of File"
# define END_FILE "End of File"
# define NO_MATCH "Record Not Found"
# define NO_MORE "No More Matching Records"
# define F_ERR "File Error %d"