msvcrt: Added N flag support to fopen.

oldstable
Piotr Caban 2013-01-25 11:39:05 +01:00 committed by Alexandre Julliard
parent ab4b4d34c3
commit 7654d95462
1 changed files with 3 additions and 0 deletions

View File

@ -1312,6 +1312,9 @@ static int msvcrt_get_flags(const MSVCRT_wchar_t* mode, int *open_flags, int* st
case 'n':
*stream_flags &= ~MSVCRT__IOCOMMIT;
break;
case 'N':
*open_flags |= MSVCRT__O_NOINHERIT;
break;
case '+':
case ' ':
case 'a':