STLdoc
STLdocumentation
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
share.h
Go to the documentation of this file.
1 /***
2 *share.h - defines file sharing modes for sopen
3 *
4 * Copyright (c) Microsoft Corporation. All rights reserved.
5 *
6 *Purpose:
7 * This file defines the file sharing modes for sopen().
8 *
9 * [Public]
10 *
11 ****/
12 
13 #pragma once
14 
15 #ifndef _INC_SHARE
16 #define _INC_SHARE
17 
18 #if !defined (_WIN32)
19 #error ERROR: Only Win32 target supported!
20 #endif /* !defined (_WIN32) */
21 
22 #define _SH_DENYRW 0x10 /* deny read/write mode */
23 #define _SH_DENYWR 0x20 /* deny write mode */
24 #define _SH_DENYRD 0x30 /* deny read mode */
25 #define _SH_DENYNO 0x40 /* deny none mode */
26 #define _SH_SECURE 0x80 /* secure mode */
27 
28 #if !__STDC__
29 /* Non-ANSI names for compatibility */
30 #define SH_DENYRW _SH_DENYRW
31 #define SH_DENYWR _SH_DENYWR
32 #define SH_DENYRD _SH_DENYRD
33 #define SH_DENYNO _SH_DENYNO
34 #endif /* !__STDC__ */
35 
36 #endif /* _INC_SHARE */