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
5fb52f2d
Commit
5fb52f2d
authored
Jan 09, 2012
by
Jacek Caban
Committed by
Alexandre Julliard
Jan 09, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ieframe: Added implementation of AggregatedNavigation2.
parent
c3f68178
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
2 deletions
+18
-2
navigate.c
dlls/ieframe/navigate.c
+18
-2
No files found.
dlls/ieframe/navigate.c
View file @
5fb52f2d
...
...
@@ -1302,9 +1302,25 @@ static HRESULT WINAPI TargetFramePriv2_AggregatedNavigation2(ITargetFramePriv2 *
IBindStatusCallback
*
pibsc
,
LPCWSTR
pszTargetName
,
IUri
*
pUri
,
LPCWSTR
pszLocation
)
{
HlinkFrame
*
This
=
impl_from_ITargetFramePriv2
(
iface
);
FIXME
(
"(%p)->(%x %p %p %s %p %s)
\n
"
,
This
,
grfHLNF
,
pbc
,
pibsc
,
debugstr_w
(
pszTargetName
),
IMoniker
*
mon
;
HRESULT
hres
;
TRACE
(
"(%p)->(%x %p %p %s %p %s)
\n
"
,
This
,
grfHLNF
,
pbc
,
pibsc
,
debugstr_w
(
pszTargetName
),
pUri
,
debugstr_w
(
pszLocation
));
return
E_NOTIMPL
;
/*
* NOTE: This is an undocumented function. It seems to be working the way it's implemented,
* but I couldn't get its tests working. It's used by mshtml to load content in a new
* instance of browser.
*/
hres
=
CreateURLMonikerEx2
(
NULL
,
pUri
,
&
mon
,
0
);
if
(
FAILED
(
hres
))
return
hres
;
hres
=
navigate_hlink
(
This
->
doc_host
,
mon
,
pbc
,
pibsc
);
IMoniker_Release
(
mon
);
return
hres
;
}
static
const
ITargetFramePriv2Vtbl
TargetFramePriv2Vtbl
=
{
...
...
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