home *** CD-ROM | disk | FTP | other *** search
/ The Datafile PD-CD 5 / DATAFILE_PDCD5.iso / utilities / l / lzwbackup / !LZWrestor / h / LZWstuff < prev   
Text File  |  1994-09-13  |  838b  |  36 lines

  1. /* this is the stuff that will be useful to all the programs */
  2.  
  3. #define LINE_LENGTH            255
  4. #define FILE_HEADER_LENGTH    100
  5. #define EXTRA_WORK_SPACE 1024
  6.  
  7. #ifndef FALSE
  8.     #define FALSE    0
  9.     #define TRUE    !FALSE
  10. #endif
  11.  
  12. /* these list the icon numbers in the main window */
  13.  
  14. #define MAIN_WINDOW_osize            1
  15. #define MAIN_WINDOW_csize            11
  16. #define MAIN_WINDOW_fspace            12
  17. #define MAIN_WINDOW_comment            9
  18. #define MAIN_WINDOW_source_fname    0
  19. #define MAIN_WINDOW_floppy_fname    6
  20. #define MAIN_WINDOW_list                3
  21. #define MAIN_WINDOW_abort            4
  22. #define MAIN_WINDOW_restore        7
  23.  
  24. /* these list the states that the machine may be in */
  25.  
  26. #define STATE_no_restore    0
  27. #define STATE_load        1
  28. #define STATE_expand    2
  29. #define STATE_write_file        3
  30. #define STATE_write_directory    4
  31. #define STATE_list    5
  32.  
  33. /* file type for backup file on floppy */
  34.  
  35. #define BACKUP_FILE_TYPE    0x409
  36.