mscoree: Stub CLRCreateInstance.
This commit is contained in:
parent
c7d82418a6
commit
1fbb214248
|
@ -7,6 +7,7 @@
|
|||
|
||||
@ stub CallFunctionShim
|
||||
@ stub CloseCtrs
|
||||
@ stdcall CLRCreateInstance(ptr ptr ptr)
|
||||
@ stdcall ClrCreateManagedInstance(wstr ptr ptr)
|
||||
@ stub CoEEShutDownCOM
|
||||
@ stdcall CoInitializeCor(long)
|
||||
|
|
|
@ -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);
|
||||
|
|
|
@ -65,3 +65,5 @@ interface ICLRMetaHost : IUnknown
|
|||
HRESULT ExitProcess(
|
||||
[in] INT32 iExitCode);
|
||||
};
|
||||
|
||||
cpp_quote("HRESULT WINAPI CLRCreateInstance(REFCLSID clsid, REFIID riid, LPVOID *ppInterface);")
|
||||
|
|
Loading…
Reference in New Issue