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
d5fa2cea
Commit
d5fa2cea
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: Support searching for .NET runtimes by exe file.
parent
0985e029
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
3 deletions
+12
-3
metahost.c
dlls/mscoree/metahost.c
+12
-3
No files found.
dlls/mscoree/metahost.c
View file @
d5fa2cea
...
...
@@ -925,9 +925,9 @@ HRESULT get_runtime_info(LPCWSTR exefile, LPCWSTR version, LPCWSTR config_file,
static
const
DWORD
supported_startup_flags
=
0
;
static
const
DWORD
supported_runtime_flags
=
RUNTIME_INFO_UPGRADE_VERSION
;
int
i
;
if
(
exefile
)
FIXME
(
"ignoring exe filename %s
\n
"
,
debugstr_w
(
exefile
))
;
WCHAR
local_version
[
MAX_PATH
];
ULONG
local_version_size
=
MAX_PATH
;
HRESULT
hr
;
if
(
config_file
)
FIXME
(
"ignoring config filename %s
\n
"
,
debugstr_w
(
config_file
));
...
...
@@ -938,6 +938,15 @@ HRESULT get_runtime_info(LPCWSTR exefile, LPCWSTR version, LPCWSTR config_file,
if
(
runtimeinfo_flags
&
~
supported_runtime_flags
)
FIXME
(
"unsupported runtimeinfo flags %x
\n
"
,
runtimeinfo_flags
&
~
supported_runtime_flags
);
if
(
exefile
&&
!
version
)
{
hr
=
CLRMetaHost_GetVersionFromFile
(
0
,
exefile
,
local_version
,
&
local_version_size
);
version
=
local_version
;
if
(
FAILED
(
hr
))
return
hr
;
}
if
(
version
)
{
return
CLRMetaHost_GetRuntime
(
0
,
version
,
&
IID_ICLRRuntimeInfo
,
(
void
**
)
result
);
...
...
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