kernel32: Add a stub for SetSystemFileCacheSize.
This commit is contained in:
parent
2a5299ea32
commit
96e920e01f
|
@ -16,7 +16,7 @@
|
|||
@ stdcall ReadProcessMemory(long ptr ptr long ptr) kernel32.ReadProcessMemory
|
||||
@ stdcall ResetWriteWatch(ptr long) kernel32.ResetWriteWatch
|
||||
@ stub SetProcessWorkingSetSizeEx
|
||||
@ stub SetSystemFileCacheSize
|
||||
@ stdcall SetSystemFileCacheSize(long long long) kernel32.SetSystemFileCacheSize
|
||||
@ stdcall UnmapViewOfFile(ptr) kernel32.UnmapViewOfFile
|
||||
@ stub UnmapViewOfFileEx
|
||||
@ stdcall VirtualAlloc(ptr long long long) kernel32.VirtualAlloc
|
||||
|
|
|
@ -1454,3 +1454,10 @@ BOOL WINAPI GetSystemFileCacheSize(PSIZE_T mincache, PSIZE_T maxcache, PDWORD fl
|
|||
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
BOOL WINAPI SetSystemFileCacheSize(SIZE_T mincache, SIZE_T maxcache, DWORD flags)
|
||||
{
|
||||
FIXME("stub: %ld %ld %d\n", mincache, maxcache, flags);
|
||||
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||
return FALSE;
|
||||
}
|
||||
|
|
|
@ -1167,6 +1167,7 @@
|
|||
@ stdcall SetProcessShutdownParameters(long long)
|
||||
@ stdcall SetProcessWorkingSetSize(long long long)
|
||||
@ stdcall SetStdHandle(long long)
|
||||
@ stdcall SetSystemFileCacheSize(long long long)
|
||||
@ stdcall SetSystemPowerState(long long)
|
||||
@ stdcall SetSystemTime(ptr)
|
||||
@ stdcall SetSystemTimeAdjustment(long long)
|
||||
|
|
Loading…
Reference in New Issue