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
90139001
Commit
90139001
authored
Mar 21, 2022
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wow64win: Add missing syscall for NtUserGetAtomName().
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
6b3da8a4
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
0 deletions
+11
-0
syscall.h
dlls/wow64win/syscall.h
+1
-0
user.c
dlls/wow64win/user.c
+10
-0
No files found.
dlls/wow64win/syscall.h
View file @
90139001
...
...
@@ -100,6 +100,7 @@
SYSCALL_ENTRY( NtUserDestroyAcceleratorTable ) \
SYSCALL_ENTRY( NtUserFindExistingCursorIcon ) \
SYSCALL_ENTRY( NtUserGetAncestor ) \
SYSCALL_ENTRY( NtUserGetAtomName ) \
SYSCALL_ENTRY( NtUserGetClipboardFormatName ) \
SYSCALL_ENTRY( NtUserGetClipboardOwner ) \
SYSCALL_ENTRY( NtUserGetClipboardSequenceNumber ) \
...
...
dlls/wow64win/user.c
View file @
90139001
...
...
@@ -189,6 +189,16 @@ NTSTATUS WINAPI wow64_NtUserRemoveProp( UINT *args )
return
HandleToUlong
(
NtUserRemoveProp
(
hwnd
,
str
));
}
NTSTATUS
WINAPI
wow64_NtUserGetAtomName
(
UINT
*
args
)
{
ATOM
atom
=
get_ulong
(
&
args
);
UNICODE_STRING32
*
str32
=
get_ptr
(
&
args
);
UNICODE_STRING
str
;
return
NtUserGetAtomName
(
atom
,
unicode_str_32to64
(
&
str
,
str32
));
}
NTSTATUS
WINAPI
wow64_NtUserGetAncestor
(
UINT
*
args
)
{
HWND
hwnd
=
get_handle
(
&
args
);
...
...
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