home *** CD-ROM | disk | FTP | other *** search
- /* this is the stuff that will be useful to all the programs */
-
- #define LINE_LENGTH 255
- #define FILE_HEADER_LENGTH 100
- #define EXTRA_WORK_SPACE 1024
-
- #ifndef FALSE
- #define FALSE 0
- #define TRUE !FALSE
- #endif
-
- /* these list the icon numbers in the main window */
-
- #define MAIN_WINDOW_osize 1
- #define MAIN_WINDOW_csize 11
- #define MAIN_WINDOW_fspace 12
- #define MAIN_WINDOW_comment 9
- #define MAIN_WINDOW_source_fname 0
- #define MAIN_WINDOW_floppy_fname 6
- #define MAIN_WINDOW_go 3
- #define MAIN_WINDOW_abort 4
- #define MAIN_WINDOW_continue 7
- #define MAIN_WINDOW_inc_disc_name 13
- #define MAIN_WINDOW_inc_dirs 14
-
- /* these list the states that the machine may be in */
-
- #define STATE_no_backup 0
- #define STATE_load 1
- #define STATE_compress 2
- #define STATE_write_file 3
- #define STATE_write_directory 4
- #define STATE_wait_for_continue 256
-
- /* file type for backup file on floppy */
-
- #define BACKUP_FILE_TYPE 0x409
-