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
0985e029
Commit
0985e029
authored
Oct 01, 2010
by
Vincent Povirk
Committed by
Alexandre Julliard
Nov 09, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mscoree: Use the .NET 4 interfaces to implement CorBindToRuntimeHost.
parent
601b240f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
5 deletions
+13
-5
mscoree_main.c
dlls/mscoree/mscoree_main.c
+13
-5
No files found.
dlls/mscoree/mscoree_main.c
View file @
0985e029
...
...
@@ -319,17 +319,25 @@ HRESULT WINAPI CorBindToRuntimeHost(LPCWSTR pwszVersion, LPCWSTR pwszBuildFlavor
DWORD
startupFlags
,
REFCLSID
rclsid
,
REFIID
riid
,
LPVOID
*
ppv
)
{
FIXME
(
"(%s, %s, %s, %p, %d, %s, %s, %p): semi-stub!
\n
"
,
debugstr_w
(
pwszVersion
),
HRESULT
ret
;
ICLRRuntimeInfo
*
info
;
TRACE
(
"(%s, %s, %s, %p, %d, %s, %s, %p)
\n
"
,
debugstr_w
(
pwszVersion
),
debugstr_w
(
pwszBuildFlavor
),
debugstr_w
(
pwszHostConfigFile
),
pReserved
,
startupFlags
,
debugstr_guid
(
rclsid
),
debugstr_guid
(
riid
),
ppv
);
if
(
!
get_mono_path
(
NULL
))
*
ppv
=
NULL
;
ret
=
get_runtime_info
(
NULL
,
pwszVersion
,
pwszHostConfigFile
,
startupFlags
,
0
,
TRUE
,
&
info
);
if
(
SUCCEEDED
(
ret
))
{
MESSAGE
(
"wine: Install the Windows version of Mono to run .NET executables
\n
"
);
return
E_FAIL
;
ret
=
ICLRRuntimeInfo_GetInterface
(
info
,
rclsid
,
riid
,
ppv
);
ICLRRuntimeInfo_Release
(
info
);
}
return
S_OK
;
return
ret
;
}
BOOL
WINAPI
DllMain
(
HINSTANCE
hinstDLL
,
DWORD
fdwReason
,
LPVOID
lpvReserved
)
...
...
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