diff options
Diffstat (limited to 'v4.0/src/TOOLS/BLD/INC/SHARE.H')
| -rw-r--r-- | v4.0/src/TOOLS/BLD/INC/SHARE.H | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/v4.0/src/TOOLS/BLD/INC/SHARE.H b/v4.0/src/TOOLS/BLD/INC/SHARE.H new file mode 100644 index 0000000..2a34f71 --- /dev/null +++ b/v4.0/src/TOOLS/BLD/INC/SHARE.H | |||
| @@ -0,0 +1,15 @@ | |||
| 1 | /*** | ||
| 2 | *share.h - defines file sharing modes for sopen | ||
| 3 | * | ||
| 4 | * Copyright (c) 1985-1988, Microsoft Corporation. All rights reserved. | ||
| 5 | * | ||
| 6 | *Purpose: | ||
| 7 | * This file defines the file sharing modes for sopen(). | ||
| 8 | * | ||
| 9 | *******************************************************************************/ | ||
| 10 | |||
| 11 | #define SH_COMPAT 0x00 /* compatibility mode */ | ||
| 12 | #define SH_DENYRW 0x10 /* deny read/write mode */ | ||
| 13 | #define SH_DENYWR 0x20 /* deny write mode */ | ||
| 14 | #define SH_DENYRD 0x30 /* deny read mode */ | ||
| 15 | #define SH_DENYNO 0x40 /* deny none mode */ | ||