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
cb060d64
Commit
cb060d64
authored
Dec 21, 2009
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
user32: Support calling a 32-bit procedure even without a corresponding thunk in CallWindowProc16.
parent
ce505590
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
2 deletions
+5
-2
msg16.c
dlls/user32/msg16.c
+5
-2
No files found.
dlls/user32/msg16.c
View file @
cb060d64
...
...
@@ -1536,8 +1536,11 @@ LRESULT WINAPI CallWindowProc16( WNDPROC16 func, HWND16 hwnd, UINT16 msg,
if
(
index
==
-
1
||
index
>=
MAX_WINPROCS32
)
call_window_proc16
(
hwnd
,
msg
,
wParam
,
lParam
,
&
result
,
func
);
else
WINPROC_CallProc16To32A
(
call_window_proc_callback
,
hwnd
,
msg
,
wParam
,
lParam
,
&
result
,
thunk_array
[
index
].
proc
);
{
WNDPROC
proc
=
(
WNDPROC
)
func
;
if
(
thunk_array
&&
thunk_array
[
index
].
proc
)
proc
=
thunk_array
[
index
].
proc
;
WINPROC_CallProc16To32A
(
call_window_proc_callback
,
hwnd
,
msg
,
wParam
,
lParam
,
&
result
,
proc
);
}
return
result
;
}
...
...
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