home *** CD-ROM | disk | FTP | other *** search
/ Dream 52 / Amiga_Dream_52.iso / Amiga / Workbench / Archivers / UnAce.lha / Src / Attribs.h < prev    next >
C/C++ Source or Header  |  1997-12-03  |  448b  |  34 lines

  1. #ifndef __attribs_h
  2. #define __attribs_h
  3.  
  4.  
  5. #ifndef _A_SUBDIR
  6.   #define _A_SUBDIR 0x10        // MS-DOS directory constant
  7. #endif
  8.  
  9. #ifndef S_IEXEC
  10.   #ifdef S_IEXECUTE
  11.     #define S_IEXEC S_IEXECUTE
  12.   #else
  13.     #define S_IEXEC 0
  14.   #endif
  15. #endif
  16.  
  17. #ifndef S_IDELETE
  18.   #define S_IDELETE 0
  19. #endif
  20.  
  21. #ifndef S_IRGRP 
  22.   #define S_IRGRP 0
  23.   #define S_IWGRP 0
  24. #endif
  25.  
  26. #ifndef S_IROTH 
  27.   #define S_IROTH 0
  28.   #define S_IWOTH 0
  29. #endif
  30.  
  31.  
  32. #endif /* __attribs_h */
  33.  
  34.