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
ef85471b
Commit
ef85471b
authored
Oct 03, 2010
by
Vincent Povirk
Committed by
Alexandre Julliard
Nov 10, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
include: Add definition for ICLRRuntimeHost.
parent
8f1b7227
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
42 additions
and
0 deletions
+42
-0
mscoree.idl
include/mscoree.idl
+42
-0
No files found.
include/mscoree.idl
View file @
ef85471b
...
...
@@ -46,6 +46,8 @@ typedef enum RUNTIME_INFO_FLAGS {
RUNTIME_INFO_DONT_SHOW_ERROR_DIALOG
=
0
x40
}
RUNTIME_INFO_FLAGS
;
typedef
HRESULT
(
__stdcall
*
FExecuteInAppDomainCallback
)(
[
in
]
void
*
cookie
)
;
[
uuid
(
F31D1788
-
C397
-
4725
-
87
A5
-
6
AF3472C2791
),
version
(
1.0
),
...
...
@@ -182,3 +184,43 @@ interface ICorRuntimeHost : IUnknown
HRESULT
CurrentDomain
(
[
out
]
IUnknown
**
appDomain
)
;
}
;
cpp_quote
(
"DEFINE_GUID(CLSID_CLRRuntimeHost, 0x90f1a06e,0x7712,0x4762,0x86,0xb5,0x7a,0x5e,0xba,0x6b,0xdb,0x02);"
)
[
uuid
(
90
f1a06c
-
7712
-
4762
-
86b5
-
7
a5eba6bdb02
),
local
,
object
]
interface
ICLRRuntimeHost
:
IUnknown
{
HRESULT
Start
()
;
HRESULT
Stop
()
;
HRESULT
SetHostControl
(
[
in
]
IHostControl
*
pHostControl
)
;
HRESULT
GetCLRControl
(
[
out
]
ICLRControl
**
pCLRControl
)
;
HRESULT
UnloadAppDomain
(
[
in
]
DWORD
dwAppDomainId
,
[
in
]
BOOL
fWaitUntilDone
)
;
HRESULT
ExecuteInAppDomain
(
[
in
]
DWORD
dwAppDomainId
,
[
in
]
FExecuteInAppDomainCallback
pCallback
,
[
in
]
void
*
cookie
)
;
HRESULT
GetCurrentAppDomainId
(
[
out
]
DWORD
*
pdwAppDomainId
)
;
HRESULT
ExecuteApplication
(
[
in
]
LPCWSTR
pwzAppFullName
,
[
in
]
DWORD
dwManifestPaths
,
[
in
]
LPCWSTR
*
ppwzManifestPaths
,
[
in
]
DWORD
dwActivationData
,
[
in
]
LPCWSTR
*
ppwzActivationData
,
[
out
]
int
*
pReturnValue
)
;
HRESULT
ExecuteInDefaultAppDomain
(
[
in
]
LPCWSTR
pwzAssemblyPath
,
[
in
]
LPCWSTR
pwzTypeName
,
[
in
]
LPCWSTR
pwzMethodName
,
[
in
]
LPCWSTR
pwzArgument
,
[
out
]
DWORD
*
pReturnValue
)
;
}
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