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
c7d82418
Commit
c7d82418
authored
Sep 21, 2010
by
Vincent Povirk
Committed by
Alexandre Julliard
Oct 04, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
include: Add declaration for ICLRMetaHost.
parent
abed5b49
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
69 additions
and
0 deletions
+69
-0
.gitignore
.gitignore
+1
-0
Makefile.in
include/Makefile.in
+1
-0
metahost.idl
include/metahost.idl
+67
-0
No files found.
.gitignore
View file @
c7d82418
...
...
@@ -178,6 +178,7 @@ include/imnact.h
include/imnxport.h
include/indexsrv.h
include/mediaobj.h
include/metahost.h
include/mimeinfo.h
include/mimeole.h
include/mlang.h
...
...
include/Makefile.in
View file @
c7d82418
...
...
@@ -41,6 +41,7 @@ PUBLIC_IDL_H_SRCS = \
imnxport.idl
\
indexsrv.idl
\
mediaobj.idl
\
metahost.idl
\
mimeinfo.idl
\
mimeole.idl
\
mlang.idl
\
...
...
include/metahost.idl
0 → 100644
View file @
c7d82418
/*
*
Copyright
2010
Vincent
Povirk
for
CodeWeavers
*
*
This
library
is
free
software
; you can redistribute it and/or
*
modify
it
under
the
terms
of
the
GNU
Lesser
General
Public
*
License
as
published
by
the
Free
Software
Foundation
; either
*
version
2.1
of
the
License
,
or
(
at
your
option
)
any
later
version
.
*
*
This
library
is
distributed
in
the
hope
that
it
will
be
useful
,
*
but
WITHOUT
ANY
WARRANTY
; without even the implied warranty of
*
MERCHANTABILITY
or
FITNESS
FOR
A
PARTICULAR
PURPOSE
.
See
the
GNU
*
Lesser
General
Public
License
for
more
details
.
*
*
You
should
have
received
a
copy
of
the
GNU
Lesser
General
Public
*
License
along
with
this
library
; if not, write to the Free Software
*
Foundation
,
Inc
.
,
51
Franklin
St
,
Fifth
Floor
,
Boston
,
MA
02110
-
1301
,
USA
*/
import
"wtypes.idl"
;
import
"propidl.idl"
;
interface
ICLRRuntimeInfo
;
typedef
HRESULT
(
__stdcall
*
CallbackThreadSetFnPtr
)()
;
typedef
HRESULT
(
__stdcall
*
CallbackThreadUnsetFnPtr
)()
;
typedef
void
(
__stdcall
*
RuntimeLoadedCallbackFnPtr
)(
ICLRRuntimeInfo
*
pRuntimeInfo
,
CallbackThreadSetFnPtr
pfnCallbackThreadSet
,
CallbackThreadUnsetFnPtr
pfnCallbackThreadUnset
)
;
cpp_quote
(
"DEFINE_GUID(CLSID_CLRMetaHost, 0x9280188d,0x0e8e,0x4867,0xb3,0x0c,0x7f,0xa8,0x38,0x84,0xe8,0xde);"
)
[
object
,
local
,
uuid
(
d332db9e
-
b9b3
-
4125
-
8207
-
a14884f53216
)
]
interface
ICLRMetaHost
:
IUnknown
{
HRESULT
GetRuntime
(
[
in
]
LPCWSTR
pwzVersion
,
[
in
]
REFIID
iid
,
[
out
,
iid_is
(
iid
),
retval
]
LPVOID
*
ppRuntime
)
;
HRESULT
GetVersionFromFile
(
[
in
]
LPCWSTR
pwzFilePath
,
[
out
,
size_is
(
*
pcchBuffer
)
]
LPWSTR
pwzBuffer
,
[
in
,
out
]
DWORD
*
pcchBuffer
)
;
HRESULT
EnumerateInstalledRuntimes
(
[
out
,
retval
]
IEnumUnknown
**
ppEnumerator
)
;
HRESULT
EnumerateLoadedRuntimes
(
[
in
]
HANDLE
hndProcess
,
[
out
,
retval
]
IEnumUnknown
**
ppEnumerator
)
;
HRESULT
RequestRuntimeLoadedNotification
(
[
in
]
RuntimeLoadedCallbackFnPtr
pCallbackFunction
)
;
HRESULT
QueryLegacyV2RuntimeBinding
(
[
in
]
REFIID
riid
,
[
out
,
iid_is
(
riid
),
retval
]
LPVOID
*
ppUnk
)
;
HRESULT
ExitProcess
(
[
in
]
INT32
iExitCode
)
;
}
;
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