Commit 7654d954 authored by Piotr Caban's avatar Piotr Caban Committed by Alexandre Julliard

msvcrt: Added N flag support to fopen.

parent ab4b4d34
......@@ -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':
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment