mirror of
https://github.com/reactos/reactos.git
synced 2025-08-04 23:35:45 +00:00
Added O_NOINHERIT.
svn path=/trunk/; revision=2918
This commit is contained in:
parent
2503ffd406
commit
b5d90aa2e5
1 changed files with 5 additions and 3 deletions
|
@ -19,9 +19,9 @@
|
||||||
* DISCLAMED. This includes but is not limited to warranties of
|
* DISCLAMED. This includes but is not limited to warranties of
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||||
*
|
*
|
||||||
* $Revision: 1.1 $
|
* $Revision: 1.2 $
|
||||||
* $Author: ekohl $
|
* $Author: hbirr $
|
||||||
* $Date: 2001/07/03 12:55:00 $
|
* $Date: 2002/05/07 22:20:00 $
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
/* Appropriated for Reactos Crtdll by Ariadne */
|
/* Appropriated for Reactos Crtdll by Ariadne */
|
||||||
|
@ -79,6 +79,7 @@ extern unsigned int _fmode;
|
||||||
|
|
||||||
#define _O_TEMPORARY 0x0040 /* Make the file dissappear after closing.
|
#define _O_TEMPORARY 0x0040 /* Make the file dissappear after closing.
|
||||||
* WARNING: Even if not created by _open! */
|
* WARNING: Even if not created by _open! */
|
||||||
|
#define _O_NOINHERIT 0x0080
|
||||||
|
|
||||||
|
|
||||||
#define _O_RANDOM 0x0010
|
#define _O_RANDOM 0x0010
|
||||||
|
@ -100,6 +101,7 @@ extern unsigned int _fmode;
|
||||||
#define O_TEXT _O_TEXT
|
#define O_TEXT _O_TEXT
|
||||||
#define O_BINARY _O_BINARY
|
#define O_BINARY _O_BINARY
|
||||||
#define O_TEMPORARY _O_TEMPORARY
|
#define O_TEMPORARY _O_TEMPORARY
|
||||||
|
#define O_NOINHERIT _O_NOINHERIT
|
||||||
|
|
||||||
#define O_RANDOM _O_RANDOM
|
#define O_RANDOM _O_RANDOM
|
||||||
#define O_SEQUENTIAL _O_RANDOM
|
#define O_SEQUENTIAL _O_RANDOM
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue