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
876a35fb
Commit
876a35fb
authored
Aug 16, 2022
by
Jacek Caban
Committed by
Alexandre Julliard
Aug 16, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wow64win: Return class atom from NtUserGetClassInfoEx thunk.
parent
fbcc124e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
4 deletions
+5
-4
user.c
dlls/wow64win/user.c
+5
-4
No files found.
dlls/wow64win/user.c
View file @
876a35fb
...
...
@@ -1759,11 +1759,12 @@ NTSTATUS WINAPI wow64_NtUserGetClassInfoEx( UINT *args )
struct
client_menu_name
client_name
;
UNICODE_STRING
name
;
WNDCLASSEXW
wc
;
ATOM
ret
;
wc
.
cbSize
=
sizeof
(
wc
);
if
(
!
NtUserGetClassInfoEx
(
instance
,
unicode_str_32to64
(
&
name
,
name32
),
&
wc
,
&
client_name
,
ansi
))
return
FALSE
;
if
(
!
(
ret
=
NtUserGetClassInfoEx
(
instance
,
unicode_str_32to64
(
&
name
,
name32
),
&
wc
,
&
client_name
,
ansi
)
))
return
0
;
wc32
->
style
=
wc
.
style
;
wc32
->
lpfnWndProc
=
PtrToUlong
(
wc
.
lpfnWndProc
);
...
...
@@ -1777,7 +1778,7 @@ NTSTATUS WINAPI wow64_NtUserGetClassInfoEx( UINT *args )
wc32
->
lpszClassName
=
PtrToUlong
(
wc
.
lpszClassName
);
wc32
->
hIconSm
=
HandleToUlong
(
wc
.
hIconSm
);
client_menu_name_64to32
(
&
client_name
,
client_name32
);
return
TRUE
;
return
ret
;
}
NTSTATUS
WINAPI
wow64_NtUserGetClassName
(
UINT
*
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