home *** CD-ROM | disk | FTP | other *** search
/ ftp.mactech.com 2010 / ftp.mactech.com.tar / ftp.mactech.com / online / source / c / compilers / Tickle-4.0.sit.hqx / Tickle-4.0 / src / stuffit.h < prev    next >
Text File  |  1993-11-18  |  973b  |  42 lines

  1. /*
  2. ** This source code was written by Tim Endres
  3. ** Email: time@ice.com.
  4. ** USMail: 8840 Main Street, Whitmore Lake, MI  48189
  5. **
  6. ** Some portions of this application utilize sources
  7. ** that are copyrighted by ICE Engineering, Inc., and
  8. ** ICE Engineering retains all rights to those sources.
  9. **
  10. ** Neither ICE Engineering, Inc., nor Tim Endres, 
  11. ** warrants this source code for any reason, and neither
  12. ** party assumes any responsbility for the use of these
  13. ** sources, libraries, or applications. The user of these
  14. ** sources and binaries assumes all responsbilities for
  15. ** any resulting consequences.
  16. */
  17.  
  18. #define sNone        0
  19. #define sFaster        1
  20. #define sFast        2
  21. #define sBetter        3
  22. #define sOptimal    4
  23. #define sBestGuess    5
  24.  
  25. typedef struct {
  26.     short        vRefNum;
  27.     long        dirID;
  28.     char        name[32];
  29.     char        method;
  30.     char        deleteFlag;
  31.     } sFileSpec;
  32.  
  33. typedef struct {
  34.     short        count;
  35.     sFileSpec    specs[1];
  36.     } sFileList;
  37.  
  38. typedef struct {
  39.     short        maxcount;
  40.     Handle        fileList;
  41.     } mStuffSpec;
  42.