Commit 6b36d7cf authored by Austin English's avatar Austin English Committed by Alexandre Julliard

kernel32: Add SetSearchPathMode stub.

parent 56b65238
......@@ -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)
......
......@@ -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;
}
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