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
43835032
Commit
43835032
authored
Mar 29, 2008
by
Jacek Caban
Committed by
Alexandre Julliard
Mar 31, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Added IActiveScriptSite::GetItemInfo implementation.
parent
b24151b5
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
21 additions
and
2 deletions
+21
-2
script.c
dlls/mshtml/script.c
+21
-2
No files found.
dlls/mshtml/script.c
View file @
43835032
...
...
@@ -255,8 +255,27 @@ static HRESULT WINAPI ActiveScriptSite_GetItemInfo(IActiveScriptSite *iface, LPC
DWORD
dwReturnMask
,
IUnknown
**
ppiunkItem
,
ITypeInfo
**
ppti
)
{
ScriptHost
*
This
=
ACTSCPSITE_THIS
(
iface
);
FIXME
(
"(%p)->(%s %x %p %p)
\n
"
,
This
,
debugstr_w
(
pstrName
),
dwReturnMask
,
ppiunkItem
,
ppti
);
return
E_NOTIMPL
;
TRACE
(
"(%p)->(%s %x %p %p)
\n
"
,
This
,
debugstr_w
(
pstrName
),
dwReturnMask
,
ppiunkItem
,
ppti
);
if
(
dwReturnMask
!=
SCRIPTINFO_IUNKNOWN
)
{
FIXME
(
"Unsupported mask %x
\n
"
,
dwReturnMask
);
return
E_NOTIMPL
;
}
*
ppiunkItem
=
NULL
;
if
(
strcmpW
(
pstrName
,
windowW
))
return
DISP_E_MEMBERNOTFOUND
;
if
(
!
This
->
doc
)
return
E_FAIL
;
/* FIXME: Return proxy object */
*
ppiunkItem
=
(
IUnknown
*
)
HTMLWINDOW2
(
This
->
doc
->
window
);
IUnknown_AddRef
(
*
ppiunkItem
);
return
S_OK
;
}
static
HRESULT
WINAPI
ActiveScriptSite_GetDocVersionString
(
IActiveScriptSite
*
iface
,
BSTR
*
pbstrVersion
)
...
...
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