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
ddaa4801
Commit
ddaa4801
authored
Oct 19, 2006
by
Huw Davies
Committed by
Alexandre Julliard
Oct 20, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
oledlg: Call the hook proc if present.
parent
e8988902
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
0 deletions
+8
-0
pastespl.c
dlls/oledlg/pastespl.c
+8
-0
No files found.
dlls/oledlg/pastespl.c
View file @
ddaa4801
...
...
@@ -415,6 +415,12 @@ static INT_PTR CALLBACK ps_dlg_proc(HWND hdlg, UINT msg, WPARAM wp, LPARAM lp)
{
if
(
!
ps_struct
)
return
0
;
if
(
ps_struct
->
ps
->
lpfnHook
)
{
INT_PTR
ret
=
ps_struct
->
ps
->
lpfnHook
(
hdlg
,
msg
,
wp
,
lp
);
if
(
ret
)
return
ret
;
}
}
switch
(
msg
)
...
...
@@ -442,6 +448,8 @@ static INT_PTR CALLBACK ps_dlg_proc(HWND hdlg, UINT msg, WPARAM wp, LPARAM lp)
SetFocus
(
GetDlgItem
(
hdlg
,
IDC_PS_DISPLAYLIST
));
if
(
ps_struct
->
ps
->
lpfnHook
)
ps_struct
->
ps
->
lpfnHook
(
hdlg
,
msg
,
0
,
0
);
return
FALSE
;
/* use new focus */
}
case
WM_COMMAND
:
...
...
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