kernel32: Add SetSearchPathMode stub.

Signed-off-by: Austin English <austinenglish@gmail.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Austin English 2016-01-07 22:02:37 -06:00 committed by Alexandre Julliard
parent 56b6523842
commit 6b36d7cfef
2 changed files with 8 additions and 1 deletions

View File

@ -1429,7 +1429,7 @@
# @ stub SetProcessUserModeExceptionPolicy
@ stdcall SetProcessWorkingSetSize(long long long)
# @ stub SetProcessWorkingSetSizeEx
# @ stub SetSearchPathMode
@ stdcall SetSearchPathMode(long)
@ stdcall SetStdHandle(long long)
# @ stub SetStdHandleEx
@ stdcall SetSystemFileCacheSize(long long long)

View File

@ -2088,3 +2088,10 @@ BOOL WINAPI CheckNameLegalDOS8Dot3W(const WCHAR *name, char *oemname, DWORD oemn
return TRUE;
}
BOOL WINAPI SetSearchPathMode(DWORD flags)
{
FIXME("(%x): stub\n", flags);
SetLastError( ERROR_CALL_NOT_IMPLEMENTED );
return FALSE;
}