kernel32: Add a stub for GetSystemFileCacheSize.
This commit is contained in:
parent
9fda14a9d6
commit
2a5299ea32
|
@ -5,7 +5,7 @@
|
|||
@ stdcall FlushViewOfFile(ptr long) kernel32.FlushViewOfFile
|
||||
@ stub GetLargePageMinimum
|
||||
@ stub GetProcessWorkingSetSizeEx
|
||||
@ stub GetSystemFileCacheSize
|
||||
@ stdcall GetSystemFileCacheSize(ptr ptr ptr) kernel32.GetSystemFileCacheSize
|
||||
@ stdcall GetWriteWatch(long ptr long ptr ptr ptr) kernel32.GetWriteWatch
|
||||
@ stdcall MapViewOfFile(long long long long long) kernel32.MapViewOfFile
|
||||
@ stdcall MapViewOfFileEx(long long long long long ptr) kernel32.MapViewOfFileEx
|
||||
|
|
|
@ -1447,3 +1447,10 @@ VOID WINAPI GlobalMemoryStatus( LPMEMORYSTATUS lpBuffer )
|
|||
lpBuffer->dwAvailPhys, lpBuffer->dwTotalPageFile, lpBuffer->dwAvailPageFile,
|
||||
lpBuffer->dwTotalVirtual, lpBuffer->dwAvailVirtual );
|
||||
}
|
||||
|
||||
BOOL WINAPI GetSystemFileCacheSize(PSIZE_T mincache, PSIZE_T maxcache, PDWORD flags)
|
||||
{
|
||||
FIXME("stub: %p %p %p\n", mincache, maxcache, flags);
|
||||
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||
return FALSE;
|
||||
}
|
||||
|
|
|
@ -637,6 +637,7 @@
|
|||
@ stdcall GetStringTypeExA(long long str long ptr)
|
||||
@ stdcall GetStringTypeExW(long long wstr long ptr)
|
||||
@ stdcall GetStringTypeW(long wstr long ptr)
|
||||
@ stdcall GetSystemFileCacheSize(ptr ptr ptr)
|
||||
@ stdcall GetSystemDefaultLCID()
|
||||
@ stdcall GetSystemDefaultLangID()
|
||||
@ stdcall GetSystemDefaultLocaleName(ptr long)
|
||||
|
|
Loading…
Reference in New Issue