Commit 37df23db authored by Louis Lenders's avatar Louis Lenders Committed by Alexandre Julliard

mscoree: Add a few more stubs.

parent 2765df9f
...@@ -9,7 +9,7 @@ ...@@ -9,7 +9,7 @@
@ stub CloseCtrs @ stub CloseCtrs
@ stub ClrCreateManagedInstance @ stub ClrCreateManagedInstance
@ stub CoEEShutDownCOM @ stub CoEEShutDownCOM
@ stub CoInitializeCor @ stdcall CoInitializeCor(long)
@ stub CoInitializeEE @ stub CoInitializeEE
@ stub CoUninitializeCor @ stub CoUninitializeCor
@ stub CoUninitializeEE @ stub CoUninitializeEE
...@@ -36,7 +36,7 @@ ...@@ -36,7 +36,7 @@
@ stub EEDllGetClassObjectFromClass @ stub EEDllGetClassObjectFromClass
@ stub EEDllRegisterServer @ stub EEDllRegisterServer
@ stub EEDllUnregisterServer @ stub EEDllUnregisterServer
@ stub GetAssemblyMDImport @ stdcall GetAssemblyMDImport(ptr ptr ptr)
@ stub GetCORRequiredVersion @ stub GetCORRequiredVersion
@ stub GetCORRootDirectory @ stub GetCORRootDirectory
@ stub GetCORSystemDirectory @ stub GetCORSystemDirectory
...@@ -67,7 +67,7 @@ ...@@ -67,7 +67,7 @@
@ stub GetXMLElement @ stub GetXMLElement
@ stub GetXMLElementAttribute @ stub GetXMLElementAttribute
@ stub GetXMLObject @ stub GetXMLObject
@ stub LoadLibraryShim @ stdcall LoadLibraryShim(ptr ptr ptr ptr)
@ stub LoadLibraryWithPolicyShim @ stub LoadLibraryWithPolicyShim
@ stub LoadStringRCEx @ stub LoadStringRCEx
@ stub LockClrVersion @ stub LockClrVersion
......
...@@ -23,6 +23,8 @@ ...@@ -23,6 +23,8 @@
#include "windef.h" #include "windef.h"
#include "winbase.h" #include "winbase.h"
#include "winuser.h"
#include "ole2.h"
#include "wine/debug.h" #include "wine/debug.h"
...@@ -115,3 +117,22 @@ HRESULT WINAPI GetCORVersion(LPWSTR pbuffer, DWORD cchBuffer, DWORD *dwLength) ...@@ -115,3 +117,22 @@ HRESULT WINAPI GetCORVersion(LPWSTR pbuffer, DWORD cchBuffer, DWORD *dwLength)
return S_OK; return S_OK;
} }
HRESULT WINAPI LoadLibraryShim( LPCWSTR szDllName, LPCWSTR szVersion, LPVOID pvReserved, HMODULE * phModDll)
{
*phModDll = LoadLibraryW(szDllName);
FIXME("(%p %s, %p, %p, %p): semi-stub\n", szDllName, debugstr_w(szDllName), szVersion, pvReserved, phModDll);
return S_OK;
}
HRESULT WINAPI CoInitializeCor(DWORD fFlags)
{
FIXME("(0x%08x): stub\n", fFlags);
return S_OK;
}
HRESULT WINAPI GetAssemblyMDImport(LPCWSTR szFileName, REFIID riid, IUnknown **ppIUnk)
{
FIXME("(%p %s, %p, %p): stub\n", szFileName, debugstr_w(szFileName), riid, *ppIUnk);
return ERROR_CALL_NOT_IMPLEMENTED;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment