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
1fbb2142
Commit
1fbb2142
authored
Sep 21, 2010
by
Vincent Povirk
Committed by
Alexandre Julliard
Oct 04, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mscoree: Stub CLRCreateInstance.
parent
c7d82418
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
0 deletions
+12
-0
mscoree.spec
dlls/mscoree/mscoree.spec
+1
-0
mscoree_main.c
dlls/mscoree/mscoree_main.c
+9
-0
metahost.idl
include/metahost.idl
+2
-0
No files found.
dlls/mscoree/mscoree.spec
View file @
1fbb2142
...
...
@@ -7,6 +7,7 @@
@ stub CallFunctionShim
@ stub CloseCtrs
@ stdcall CLRCreateInstance(ptr ptr ptr)
@ stdcall ClrCreateManagedInstance(wstr ptr ptr)
@ stub CoEEShutDownCOM
@ stdcall CoInitializeCor(long)
...
...
dlls/mscoree/mscoree_main.c
View file @
1fbb2142
...
...
@@ -29,12 +29,14 @@
#include "winnls.h"
#include "winreg.h"
#include "ole2.h"
#include "ocidl.h"
#include "shellapi.h"
#include "initguid.h"
#include "cor.h"
#include "corerror.h"
#include "mscoree.h"
#include "metahost.h"
#include "mscoree_private.h"
#include "wine/debug.h"
...
...
@@ -638,6 +640,13 @@ BOOL WINAPI StrongNameSignatureVerificationEx(LPCWSTR filename, BOOL forceVerifi
return
FALSE
;
}
HRESULT
WINAPI
CLRCreateInstance
(
REFCLSID
clsid
,
REFIID
riid
,
LPVOID
*
ppInterface
)
{
FIXME
(
"(%s,%s,%p): stub
\n
"
,
debugstr_guid
(
clsid
),
debugstr_guid
(
riid
),
ppInterface
);
return
E_NOTIMPL
;
}
HRESULT
WINAPI
DllGetClassObject
(
REFCLSID
rclsid
,
REFIID
riid
,
LPVOID
*
ppv
)
{
FIXME
(
"(%s, %s, %p): stub
\n
"
,
debugstr_guid
(
rclsid
),
debugstr_guid
(
riid
),
ppv
);
...
...
include/metahost.idl
View file @
1fbb2142
...
...
@@ -65,3 +65,5 @@ interface ICLRMetaHost : IUnknown
HRESULT
ExitProcess
(
[
in
]
INT32
iExitCode
)
;
}
;
cpp_quote
(
"HRESULT WINAPI CLRCreateInstance(REFCLSID clsid, REFIID riid, LPVOID *ppInterface);"
)
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