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
481dcb4b
Commit
481dcb4b
authored
Jul 11, 2011
by
Jay Yang
Committed by
Alexandre Julliard
Jul 12, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shell32: Make IExplorerBrowser respond to CWM_GETISHELLBROWSER.
parent
bc5d32be
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
0 deletions
+6
-0
ebrowser.c
dlls/shell32/ebrowser.c
+6
-0
No files found.
dlls/shell32/ebrowser.c
View file @
481dcb4b
...
...
@@ -743,6 +743,11 @@ static LRESULT main_on_wm_size(ExplorerBrowserImpl *This)
return
TRUE
;
}
static
LRESULT
main_on_cwm_getishellbrowser
(
ExplorerBrowserImpl
*
This
)
{
return
(
LRESULT
)
&
This
->
IShellBrowser_iface
;
}
static
LRESULT
CALLBACK
main_wndproc
(
HWND
hWnd
,
UINT
uMessage
,
WPARAM
wParam
,
LPARAM
lParam
)
{
ExplorerBrowserImpl
*
This
=
(
ExplorerBrowserImpl
*
)
GetWindowLongPtrW
(
hWnd
,
GWLP_USERDATA
);
...
...
@@ -751,6 +756,7 @@ static LRESULT CALLBACK main_wndproc(HWND hWnd, UINT uMessage, WPARAM wParam, LP
{
case
WM_CREATE
:
return
main_on_wm_create
(
hWnd
,
(
CREATESTRUCTW
*
)
lParam
);
case
WM_SIZE
:
return
main_on_wm_size
(
This
);
case
CWM_GETISHELLBROWSER
:
return
main_on_cwm_getishellbrowser
(
This
);
default:
return
DefWindowProcW
(
hWnd
,
uMessage
,
wParam
,
lParam
);
}
...
...
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