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
9c0260f2
Commit
9c0260f2
authored
Aug 23, 2010
by
David Hedberg
Committed by
Alexandre Julliard
Aug 23, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shell32: Implement IExplorerBrowser::SetOptions and IExplorerBrowser::GetOptions.
parent
6cb76583
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
42 additions
and
4 deletions
+42
-4
ebrowser.c
dlls/shell32/ebrowser.c
+16
-4
ebrowser.c
dlls/shell32/tests/ebrowser.c
+26
-0
No files found.
dlls/shell32/ebrowser.c
View file @
9c0260f2
...
...
@@ -42,6 +42,8 @@ typedef struct _ExplorerBrowserImpl {
BOOL
destroyed
;
HWND
hwnd_main
;
EXPLORER_BROWSER_OPTIONS
eb_options
;
}
ExplorerBrowserImpl
;
/**************************************************************************
...
...
@@ -258,18 +260,28 @@ static HRESULT WINAPI IExplorerBrowser_fnSetOptions(IExplorerBrowser *iface,
EXPLORER_BROWSER_OPTIONS
dwFlag
)
{
ExplorerBrowserImpl
*
This
=
(
ExplorerBrowserImpl
*
)
iface
;
FIXME
(
"stub, %p (0x%x)
\n
"
,
This
,
dwFlag
);
static
const
EXPLORER_BROWSER_OPTIONS
unsupported_options
=
EBO_SHOWFRAMES
|
EBO_ALWAYSNAVIGATE
|
EBO_NOWRAPPERWINDOW
|
EBO_HTMLSHAREPOINTVIEW
;
return
E_NOTIMPL
;
TRACE
(
"%p (0x%x)
\n
"
,
This
,
dwFlag
);
if
(
dwFlag
&
unsupported_options
)
FIXME
(
"Flags 0x%08x contains unsupported options.
\n
"
,
dwFlag
);
This
->
eb_options
=
dwFlag
;
return
S_OK
;
}
static
HRESULT
WINAPI
IExplorerBrowser_fnGetOptions
(
IExplorerBrowser
*
iface
,
EXPLORER_BROWSER_OPTIONS
*
pdwFlag
)
{
ExplorerBrowserImpl
*
This
=
(
ExplorerBrowserImpl
*
)
iface
;
FIXME
(
"stub,
%p (%p)
\n
"
,
This
,
pdwFlag
);
TRACE
(
"
%p (%p)
\n
"
,
This
,
pdwFlag
);
return
E_NOTIMPL
;
*
pdwFlag
=
This
->
eb_options
;
return
S_OK
;
}
static
HRESULT
WINAPI
IExplorerBrowser_fnBrowseToIDList
(
IExplorerBrowser
*
iface
,
...
...
dlls/shell32/tests/ebrowser.c
View file @
9c0260f2
...
...
@@ -277,6 +277,7 @@ static void test_basics(void)
IExplorerBrowser
*
peb
;
IShellBrowser
*
psb
;
ULONG
lres
;
DWORD
flags
;
HDWP
hdwp
;
RECT
rc
;
HRESULT
hr
;
...
...
@@ -332,6 +333,31 @@ static void test_basics(void)
}
IExplorerBrowser_Destroy
(
peb
);
IExplorerBrowser_Release
(
peb
);
/* GetOptions/SetOptions*/
ebrowser_instantiate
(
&
peb
);
if
(
0
)
{
/* Crashes on Windows 7 */
IExplorerBrowser_GetOptions
(
peb
,
NULL
);
}
hr
=
IExplorerBrowser_GetOptions
(
peb
,
&
flags
);
ok
(
hr
==
S_OK
,
"got (0x%08x)
\n
"
,
hr
);
ok
(
flags
==
0
,
"got (0x%08x)
\n
"
,
flags
);
/* Settings preserved through Initialize. */
hr
=
IExplorerBrowser_SetOptions
(
peb
,
0xDEADBEEF
);
ok
(
hr
==
S_OK
,
"got (0x%08x)
\n
"
,
hr
);
ebrowser_initialize
(
peb
);
hr
=
IExplorerBrowser_GetOptions
(
peb
,
&
flags
);
ok
(
flags
==
0xDEADBEEF
,
"got (0x%08x)
\n
"
,
flags
);
ok
(
hr
==
S_OK
,
"got (0x%08x)
\n
"
,
hr
);
IExplorerBrowser_Destroy
(
peb
);
lres
=
IExplorerBrowser_Release
(
peb
);
ok
(
lres
==
0
,
"Got %d
\n
"
,
lres
);
}
...
...
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