Commit 2a5299ea authored by Austin English's avatar Austin English Committed by Alexandre Julliard

kernel32: Add a stub for GetSystemFileCacheSize.

parent 9fda14a9
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
@ stdcall FlushViewOfFile(ptr long) kernel32.FlushViewOfFile @ stdcall FlushViewOfFile(ptr long) kernel32.FlushViewOfFile
@ stub GetLargePageMinimum @ stub GetLargePageMinimum
@ stub GetProcessWorkingSetSizeEx @ stub GetProcessWorkingSetSizeEx
@ stub GetSystemFileCacheSize @ stdcall GetSystemFileCacheSize(ptr ptr ptr) kernel32.GetSystemFileCacheSize
@ stdcall GetWriteWatch(long ptr long ptr ptr ptr) kernel32.GetWriteWatch @ stdcall GetWriteWatch(long ptr long ptr ptr ptr) kernel32.GetWriteWatch
@ stdcall MapViewOfFile(long long long long long) kernel32.MapViewOfFile @ stdcall MapViewOfFile(long long long long long) kernel32.MapViewOfFile
@ stdcall MapViewOfFileEx(long long long long long ptr) kernel32.MapViewOfFileEx @ stdcall MapViewOfFileEx(long long long long long ptr) kernel32.MapViewOfFileEx
......
...@@ -1447,3 +1447,10 @@ VOID WINAPI GlobalMemoryStatus( LPMEMORYSTATUS lpBuffer ) ...@@ -1447,3 +1447,10 @@ VOID WINAPI GlobalMemoryStatus( LPMEMORYSTATUS lpBuffer )
lpBuffer->dwAvailPhys, lpBuffer->dwTotalPageFile, lpBuffer->dwAvailPageFile, lpBuffer->dwAvailPhys, lpBuffer->dwTotalPageFile, lpBuffer->dwAvailPageFile,
lpBuffer->dwTotalVirtual, lpBuffer->dwAvailVirtual ); 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 @@ ...@@ -637,6 +637,7 @@
@ stdcall GetStringTypeExA(long long str long ptr) @ stdcall GetStringTypeExA(long long str long ptr)
@ stdcall GetStringTypeExW(long long wstr long ptr) @ stdcall GetStringTypeExW(long long wstr long ptr)
@ stdcall GetStringTypeW(long wstr long ptr) @ stdcall GetStringTypeW(long wstr long ptr)
@ stdcall GetSystemFileCacheSize(ptr ptr ptr)
@ stdcall GetSystemDefaultLCID() @ stdcall GetSystemDefaultLCID()
@ stdcall GetSystemDefaultLangID() @ stdcall GetSystemDefaultLangID()
@ stdcall GetSystemDefaultLocaleName(ptr long) @ stdcall GetSystemDefaultLocaleName(ptr long)
......
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