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
1300cbcb
Commit
1300cbcb
authored
Aug 17, 2022
by
Jacek Caban
Committed by
Alexandre Julliard
Aug 17, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wow64win: Support GCLP_MENUNAME in NtUserSetClassLongPtr thunk.
parent
ab6df634
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
0 deletions
+10
-0
user.c
dlls/wow64win/user.c
+10
-0
No files found.
dlls/wow64win/user.c
View file @
1300cbcb
...
...
@@ -3297,6 +3297,16 @@ NTSTATUS WINAPI wow64_NtUserSetClassLongPtr( UINT *args )
LONG_PTR
newval
=
get_ulong
(
&
args
);
BOOL
ansi
=
get_ulong
(
&
args
);
if
(
offset
==
GCLP_MENUNAME
)
{
struct
client_menu_name
menu_name
;
struct
client_menu_name32
*
menu_name32
=
UlongToPtr
(
newval
);
NtUserSetClassLong
(
hwnd
,
offset
,
(
UINT_PTR
)
client_menu_name_32to64
(
&
menu_name
,
menu_name32
),
ansi
);
client_menu_name_64to32
(
&
menu_name
,
menu_name32
);
return
0
;
}
return
NtUserSetClassLongPtr
(
hwnd
,
offset
,
newval
,
ansi
);
}
...
...
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