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
8184e86a
Commit
8184e86a
authored
Feb 01, 2022
by
Esme Povirk
Committed by
Alexandre Julliard
Feb 02, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mscoree: Fix a misleading parameter name.
Signed-off-by:
Esme Povirk
<
esme@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
5bb957fa
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
corruntimehost.c
dlls/mscoree/corruntimehost.c
+3
-3
mscoree_private.h
dlls/mscoree/mscoree_private.h
+1
-1
No files found.
dlls/mscoree/corruntimehost.c
View file @
8184e86a
...
...
@@ -1716,7 +1716,7 @@ end:
#define CHARS_IN_GUID 39
HRESULT
create_monodata
(
REF
IID
riid
,
LPVOID
*
ppObj
)
HRESULT
create_monodata
(
REF
CLSID
clsid
,
LPVOID
*
ppObj
)
{
static
const
WCHAR
wszFileSlash
[]
=
L"file:///"
;
static
const
WCHAR
wszCLSIDSlash
[]
=
L"CLSID
\\
"
;
...
...
@@ -1739,7 +1739,7 @@ HRESULT create_monodata(REFIID riid, LPVOID *ppObj )
DWORD
dwBufLen
=
350
;
lstrcpyW
(
path
,
wszCLSIDSlash
);
StringFromGUID2
(
ri
id
,
path
+
lstrlenW
(
wszCLSIDSlash
),
CHARS_IN_GUID
);
StringFromGUID2
(
cls
id
,
path
+
lstrlenW
(
wszCLSIDSlash
),
CHARS_IN_GUID
);
lstrcatW
(
path
,
wszInprocServer32
);
TRACE
(
"Registry key: %s
\n
"
,
debugstr_w
(
path
));
...
...
@@ -1832,7 +1832,7 @@ HRESULT create_monodata(REFIID riid, LPVOID *ppObj )
}
else
{
if
(
!
try_create_registration_free_com
(
ri
id
,
classname
,
ARRAY_SIZE
(
classname
),
filename
,
ARRAY_SIZE
(
filename
)))
if
(
!
try_create_registration_free_com
(
cls
id
,
classname
,
ARRAY_SIZE
(
classname
),
filename
,
ARRAY_SIZE
(
filename
)))
return
CLASS_E_CLASSNOTAVAILABLE
;
TRACE
(
"classname (%s)
\n
"
,
debugstr_w
(
classname
));
...
...
dlls/mscoree/mscoree_private.h
View file @
8184e86a
...
...
@@ -212,7 +212,7 @@ HRESULT WINAPI CLRMetaHost_GetRuntime(ICLRMetaHost* iface, LPCWSTR pwzVersion, R
extern
HRESULT
CorDebug_Create
(
ICLRRuntimeHost
*
runtimehost
,
IUnknown
**
ppUnk
)
DECLSPEC_HIDDEN
;
extern
HRESULT
create_monodata
(
REF
IID
ri
id
,
LPVOID
*
ppObj
)
DECLSPEC_HIDDEN
;
extern
HRESULT
create_monodata
(
REF
CLSID
cls
id
,
LPVOID
*
ppObj
)
DECLSPEC_HIDDEN
;
extern
HRESULT
get_file_from_strongname
(
WCHAR
*
stringnameW
,
WCHAR
*
assemblies_path
,
int
path_length
)
DECLSPEC_HIDDEN
;
...
...
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