update for HEAD-2003021201
[reactos.git] / include / msvcrt / share.h
1 /*
2  * share.h
3  *
4  * Constants for file sharing functions.
5  *
6  * This file is part of the Mingw32 package.
7  *
8  * Contributors:
9  *  Created by Colin Peters <colin@bird.fu.is.saga-u.ac.jp>
10  *
11  *  THIS SOFTWARE IS NOT COPYRIGHTED
12  *
13  *  This source code is offered for use in the public domain. You may
14  *  use, modify or distribute it freely.
15  *
16  *  This code is distributed in the hope that it will be useful but
17  *  WITHOUT ANY WARRANTY. ALL WARRANTIES, EXPRESS OR IMPLIED ARE HEREBY
18  *  DISCLAIMED. This includes but is not limited to warranties of
19  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
20  *
21  * $Revision$
22  * $Author$
23  * $Date$
24  *
25  */
26
27 #ifndef _SHARE_H_
28 #define _SHARE_H_
29
30
31 #define SH_COMPAT   0x0000
32 #define SH_DENYRW   0x0010
33 #define SH_DENYWR   0x0020
34 #define SH_DENYRD   0x0030
35 #define SH_DENYNO   0x0040
36
37 #define _SH_COMPAT  SH_COMPAT
38 #define _SH_DENYRW  SH_DENYRW
39 #define _SH_DENYWR  SH_DENYWR
40 #define _SH_DENYRD  SH_DENYRD
41 #define _SH_DENYNO  SH_DENYNO
42
43
44 #endif  /* Not _SHARE_H_ */