home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c221 / 6.ddi / MWHC.006 / T < prev    next >
Encoding:
Text File  |  1992-12-09  |  605 b   |  35 lines

  1. /*
  2.  *   share.h -- extra-ANSI 
  3.  *
  4.  *   Constants needed to specify the allowable sharing modes.
  5.  *
  6.  *           Copyright (c) 1990, MetaWare Incorporated
  7.  */
  8.  
  9. #ifndef _SHARE_H
  10. #define _SHARE_H
  11.  
  12. #ifdef __CPLUSPLUS__
  13. extern "C" {
  14. #endif
  15.  
  16. #define _SH_DENYNO 64
  17. #define _SH_DENYRD 48
  18. #define _SH_DENYWR 32
  19. #define _SH_DENYRW 16
  20. #define _SH_COMPAT 0
  21.  
  22. #if __HIGHC__
  23.  
  24. #define SH_DENYNO _SH_DENYNO 
  25. #define SH_DENYRD _SH_DENYRD 
  26. #define SH_DENYWR _SH_DENYWR 
  27. #define SH_DENYRW _SH_DENYRW 
  28. #define SH_COMPAT _SH_COMPAT 
  29.  
  30. #endif
  31. #ifdef __CPLUSPLUS__
  32. }
  33. #endif
  34. #endif /* _SHARE_H */
  35.