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
68a3f4eb
Commit
68a3f4eb
authored
Jul 30, 2010
by
Jacek Caban
Committed by
Alexandre Julliard
Jul 30, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wscript.exe: Added IHost's IDispatch functions implementation.
parent
4dc9711f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
6 deletions
+12
-6
host.c
programs/wscript/host.c
+12
-6
No files found.
programs/wscript/host.c
View file @
68a3f4eb
...
...
@@ -66,24 +66,30 @@ static HRESULT WINAPI Host_GetTypeInfoCount(IHost *iface, UINT *pctinfo)
static
HRESULT
WINAPI
Host_GetTypeInfo
(
IHost
*
iface
,
UINT
iTInfo
,
LCID
lcid
,
ITypeInfo
**
ppTInfo
)
{
WINE_FIXME
(
"(%x %x %p
\n
"
,
iTInfo
,
lcid
,
ppTInfo
);
return
E_NOTIMPL
;
WINE_TRACE
(
"(%x %x %p
\n
"
,
iTInfo
,
lcid
,
ppTInfo
);
ITypeInfo_AddRef
(
host_ti
);
*
ppTInfo
=
host_ti
;
return
S_OK
;
}
static
HRESULT
WINAPI
Host_GetIDsOfNames
(
IHost
*
iface
,
REFIID
riid
,
LPOLESTR
*
rgszNames
,
UINT
cNames
,
LCID
lcid
,
DISPID
*
rgDispId
)
{
WINE_
FIXM
E
(
"(%s %p %d %x %p)
\n
"
,
wine_dbgstr_guid
(
riid
),
rgszNames
,
WINE_
TRAC
E
(
"(%s %p %d %x %p)
\n
"
,
wine_dbgstr_guid
(
riid
),
rgszNames
,
cNames
,
lcid
,
rgDispId
);
return
E_NOTIMPL
;
return
ITypeInfo_GetIDsOfNames
(
host_ti
,
rgszNames
,
cNames
,
rgDispId
);
}
static
HRESULT
WINAPI
Host_Invoke
(
IHost
*
iface
,
DISPID
dispIdMember
,
REFIID
riid
,
LCID
lcid
,
WORD
wFlags
,
DISPPARAMS
*
pDispParams
,
VARIANT
*
pVarResult
,
EXCEPINFO
*
pExcepInfo
,
UINT
*
puArgErr
)
{
WINE_FIXME
(
"(%d %p %p)
\n
"
,
dispIdMember
,
pDispParams
,
pVarResult
);
return
E_NOTIMPL
;
WINE_TRACE
(
"(%d %p %p)
\n
"
,
dispIdMember
,
pDispParams
,
pVarResult
);
return
ITypeInfo_Invoke
(
host_ti
,
iface
,
dispIdMember
,
wFlags
,
pDispParams
,
pVarResult
,
pExcepInfo
,
puArgErr
);
}
static
HRESULT
WINAPI
Host_get_Name
(
IHost
*
iface
,
BSTR
*
out_Name
)
...
...
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