|
|
1.1 root 1: /***
2: *share.h - defines file sharing modes for sopen
3: *
1.1.1.3 ! root 4: * Copyright (c) 1985-1993, Microsoft Corporation. All rights reserved.
1.1 root 5: *
6: *Purpose:
7: * This file defines the file sharing modes for sopen().
8: *
9: ****/
10:
11: #ifndef _INC_SHARE
12:
13: #define _SH_DENYRW 0x10 /* deny read/write mode */
14: #define _SH_DENYWR 0x20 /* deny write mode */
15: #define _SH_DENYRD 0x30 /* deny read mode */
16: #define _SH_DENYNO 0x40 /* deny none mode */
17:
18: #if !__STDC__
19: /* Non-ANSI names for compatibility */
20: #define SH_DENYRW _SH_DENYRW
21: #define SH_DENYWR _SH_DENYWR
22: #define SH_DENYRD _SH_DENYRD
23: #define SH_DENYNO _SH_DENYNO
24: #endif
25:
26: #define _INC_SHARE
27: #endif /* _INC_SHARE */
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.