Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
2a5299ea
Commit
2a5299ea
authored
Oct 07, 2014
by
Austin English
Committed by
Alexandre Julliard
Oct 08, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kernel32: Add a stub for GetSystemFileCacheSize.
parent
9fda14a9
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
1 deletion
+9
-1
api-ms-win-core-memory-l1-1-1.spec
...win-core-memory-l1-1-1/api-ms-win-core-memory-l1-1-1.spec
+1
-1
heap.c
dlls/kernel32/heap.c
+7
-0
kernel32.spec
dlls/kernel32/kernel32.spec
+1
-0
No files found.
dlls/api-ms-win-core-memory-l1-1-1/api-ms-win-core-memory-l1-1-1.spec
View file @
2a5299ea
...
@@ -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
@ st
ub
GetSystemFileCacheSize
@ st
dcall 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
...
...
dlls/kernel32/heap.c
View file @
2a5299ea
...
@@ -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
;
}
dlls/kernel32/kernel32.spec
View file @
2a5299ea
...
@@ -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)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment