msvcrt: Ignore S and R flags in fopen.

This commit is contained in:
Piotr Caban 2013-01-25 11:38:48 +01:00 committed by Alexandre Julliard
parent e3c13943d4
commit ab4b4d34c3
1 changed files with 4 additions and 0 deletions

View File

@ -1317,6 +1317,10 @@ static int msvcrt_get_flags(const MSVCRT_wchar_t* mode, int *open_flags, int* st
case 'a':
case 'w':
break;
case 'S':
case 'R':
FIXME("ignoring cache optimization flag: %c\n", mode[-1]);
break;
default:
MSVCRT_INVALID_PMT(0, MSVCRT_EINVAL);
return -1;