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
3c0d0005
Commit
3c0d0005
authored
Oct 11, 2023
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntdll: Use the standard syscall calling convention for NtFlushProcessWriteBuffers.
parent
5ae7ca0b
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
4 deletions
+4
-4
virtual.c
dlls/ntdll/unix/virtual.c
+2
-1
process.c
dlls/wow64/process.c
+1
-2
winternl.h
include/winternl.h
+1
-1
No files found.
dlls/ntdll/unix/virtual.c
View file @
3c0d0005
...
...
@@ -6022,10 +6022,11 @@ NTSTATUS WINAPI NtFlushInstructionCache( HANDLE handle, const void *addr, SIZE_T
/**********************************************************************
* NtFlushProcessWriteBuffers (NTDLL.@)
*/
void
WINAPI
NtFlushProcessWriteBuffers
(
void
)
NTSTATUS
WINAPI
NtFlushProcessWriteBuffers
(
void
)
{
static
int
once
=
0
;
if
(
!
once
++
)
FIXME
(
"stub
\n
"
);
return
STATUS_SUCCESS
;
}
...
...
dlls/wow64/process.c
View file @
3c0d0005
...
...
@@ -431,8 +431,7 @@ NTSTATUS WINAPI wow64_NtDebugActiveProcess( UINT *args )
*/
NTSTATUS
WINAPI
wow64_NtFlushProcessWriteBuffers
(
UINT
*
args
)
{
NtFlushProcessWriteBuffers
();
return
STATUS_SUCCESS
;
return
NtFlushProcessWriteBuffers
();
}
...
...
include/winternl.h
View file @
3c0d0005
...
...
@@ -4404,7 +4404,7 @@ NTSYSAPI NTSTATUS WINAPI NtFindAtom(const WCHAR*,ULONG,RTL_ATOM*);
NTSYSAPI
NTSTATUS
WINAPI
NtFlushBuffersFile
(
HANDLE
,
IO_STATUS_BLOCK
*
);
NTSYSAPI
NTSTATUS
WINAPI
NtFlushInstructionCache
(
HANDLE
,
LPCVOID
,
SIZE_T
);
NTSYSAPI
NTSTATUS
WINAPI
NtFlushKey
(
HANDLE
);
NTSYSAPI
void
WINAPI
NtFlushProcessWriteBuffers
(
void
);
NTSYSAPI
NTSTATUS
WINAPI
NtFlushProcessWriteBuffers
(
void
);
NTSYSAPI
NTSTATUS
WINAPI
NtFlushVirtualMemory
(
HANDLE
,
LPCVOID
*
,
SIZE_T
*
,
ULONG
);
NTSYSAPI
NTSTATUS
WINAPI
NtFlushWriteBuffer
(
VOID
);
NTSYSAPI
NTSTATUS
WINAPI
NtFreeVirtualMemory
(
HANDLE
,
PVOID
*
,
SIZE_T
*
,
ULONG
);
...
...
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