home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / slfinsta.zip / include / attribs.h < prev    next >
C/C++ Source or Header  |  2000-03-26  |  541b  |  36 lines

  1. /* $Id: attribs.h,v 1.1 2000/03/27 04:53:04 ktk Exp $ */
  2.  
  3. #ifndef __attribs_h
  4. #define __attribs_h
  5.  
  6.  
  7. #ifndef _A_SUBDIR
  8.   #define _A_SUBDIR 0x10        // MS-DOS directory constant
  9. #endif
  10.  
  11. #ifndef S_IEXEC
  12.   #ifdef S_IEXECUTE
  13.     #define S_IEXEC S_IEXECUTE
  14.   #else
  15.     #define S_IEXEC 0
  16.   #endif
  17. #endif
  18.  
  19. #ifndef S_IDELETE
  20.   #define S_IDELETE 0
  21. #endif
  22.  
  23. #ifndef S_IRGRP 
  24.   #define S_IRGRP 0
  25.   #define S_IWGRP 0
  26. #endif
  27.  
  28. #ifndef S_IROTH 
  29.   #define S_IROTH 0
  30.   #define S_IWOTH 0
  31. #endif
  32.  
  33.  
  34. #endif /* __attribs_h */
  35.  
  36.