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
4ce0f742
Commit
4ce0f742
authored
Oct 11, 2013
by
Jacek Caban
Committed by
Alexandre Julliard
Oct 11, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ieframe: Pass frame_name to connection points in FireBeforeNavigate2.
parent
49d0e64f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
shellbrowser.c
dlls/ieframe/shellbrowser.c
+2
-1
No files found.
dlls/ieframe/shellbrowser.c
View file @
4ce0f742
...
...
@@ -693,7 +693,7 @@ static HRESULT WINAPI DocObjectService_FireBeforeNavigate2(
V_VT
(
params
+
3
)
=
(
VT_BYREF
|
VT_VARIANT
);
V_VARIANTREF
(
params
+
3
)
=
&
var_frame_name
;
V_VT
(
&
var_frame_name
)
=
VT_BSTR
;
V_BSTR
(
&
var_frame_name
)
=
NULL
;
V_BSTR
(
&
var_frame_name
)
=
lpszFrameName
?
SysAllocString
(
lpszFrameName
)
:
NULL
;
V_VT
(
params
+
4
)
=
(
VT_BYREF
|
VT_VARIANT
);
V_VARIANTREF
(
params
+
4
)
=
&
var_flags
;
...
...
@@ -714,6 +714,7 @@ static HRESULT WINAPI DocObjectService_FireBeforeNavigate2(
SysFreeString
(
V_BSTR
(
&
var_url
));
SysFreeString
(
V_BSTR
(
&
var_headers
));
SysFreeString
(
V_BSTR
(
&
var_frame_name
));
SafeArrayDestroy
(
post_data
);
*
pfCancel
=
!!
cancel
;
...
...
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