Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
a10f1e9d
Commit
a10f1e9d
authored
May 05, 2020
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kernel32: Move FlushProcessWriteBuffers() stub to ntdll.
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
8555e948
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
12 additions
and
13 deletions
+12
-13
kernel32.spec
dlls/kernel32/kernel32.spec
+1
-1
process.c
dlls/kernel32/process.c
+0
-11
kernelbase.spec
dlls/kernelbase/kernelbase.spec
+1
-1
ntdll.spec
dlls/ntdll/ntdll.spec
+1
-0
process.c
dlls/ntdll/process.c
+9
-0
No files found.
dlls/kernel32/kernel32.spec
View file @
a10f1e9d
...
...
@@ -518,7 +518,7 @@
@ stdcall FlushConsoleInputBuffer(long)
@ stdcall FlushFileBuffers(long) KERNEL32_FlushFileBuffers
@ stdcall -import FlushInstructionCache(long long long)
@ stdcall FlushProcessWriteBuffers()
@ stdcall FlushProcessWriteBuffers()
ntdll.NtFlushProcessWriteBuffers
@ stdcall -import FlushViewOfFile(ptr long)
@ stdcall FoldStringA(long str long ptr long)
@ stdcall -import FoldStringW(long wstr long ptr long)
...
...
dlls/kernel32/process.c
View file @
a10f1e9d
...
...
@@ -992,17 +992,6 @@ BOOL WINAPI GetProcessDEPPolicy(HANDLE process, LPDWORD flags, PBOOL permanent)
return
TRUE
;
}
/**********************************************************************
* FlushProcessWriteBuffers (KERNEL32.@)
*/
VOID
WINAPI
FlushProcessWriteBuffers
(
void
)
{
static
int
once
=
0
;
if
(
!
once
++
)
FIXME
(
": stub
\n
"
);
}
/***********************************************************************
* UnregisterApplicationRestart (KERNEL32.@)
*/
...
...
dlls/kernelbase/kernelbase.spec
View file @
a10f1e9d
...
...
@@ -382,7 +382,7 @@
@ stdcall FlushConsoleInputBuffer(long) kernel32.FlushConsoleInputBuffer
@ stdcall FlushFileBuffers(long)
@ stdcall FlushInstructionCache(long long long)
@ stdcall FlushProcessWriteBuffers()
kernel32.
FlushProcessWriteBuffers
@ stdcall FlushProcessWriteBuffers()
ntdll.Nt
FlushProcessWriteBuffers
@ stdcall FlushViewOfFile(ptr long)
@ stdcall FoldStringW(long wstr long ptr long)
# @ stub ForceSyncFgPolicyInternal
...
...
dlls/ntdll/ntdll.spec
View file @
a10f1e9d
...
...
@@ -212,6 +212,7 @@
@ stdcall NtFlushBuffersFile(long ptr)
@ stdcall NtFlushInstructionCache(long ptr long)
@ stdcall NtFlushKey(long)
@ stdcall NtFlushProcessWriteBuffers()
@ stdcall NtFlushVirtualMemory(long ptr ptr long)
@ stub NtFlushWriteBuffer
# @ stub NtFreeUserPhysicalPages
...
...
dlls/ntdll/process.c
View file @
a10f1e9d
...
...
@@ -737,6 +737,15 @@ NTSTATUS WINAPI NtFlushInstructionCache( HANDLE handle, const void *addr, SIZE_T
return
STATUS_SUCCESS
;
}
/**********************************************************************
* NtFlushProcessWriteBuffers [NTDLL.@]
*/
void
WINAPI
NtFlushProcessWriteBuffers
(
void
)
{
static
int
once
=
0
;
if
(
!
once
++
)
FIXME
(
"stub
\n
"
);
}
/******************************************************************
* NtOpenProcess [NTDLL.@]
* ZwOpenProcess [NTDLL.@]
...
...
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