home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / c / library / dos / directry / fff320 / fff.h < prev    next >
Encoding:
C/C++ Source or Header  |  1989-12-06  |  462 b   |  29 lines

  1. #ifndef DOS_DATE
  2. #define DOS_DATE
  3. typedef union {
  4.     unsigned u;
  5.     struct {
  6.         unsigned Day : 5;
  7.         unsigned Month : 4;
  8.         unsigned Year  : 7;
  9.         } b;
  10.     } DOS_FILE_DATE;
  11. #endif
  12.  
  13. #ifndef DOS_TIME
  14. #define DOS_TIME
  15. typedef union {
  16.     unsigned u;
  17.     struct {
  18.         unsigned Second : 5;
  19.         unsigned Minute : 6;
  20.         unsigned Hour   : 5;
  21.         } b;
  22.     } DOS_FILE_TIME;
  23. #endif
  24.  
  25. struct Stats {
  26.     int Entry[3];
  27.     };
  28.  
  29. typedef enum {none, arc, zip, zoo, pak, lzh} ARC_TYPE;