Commit 6e3d68b1 authored by Vincent Povirk's avatar Vincent Povirk Committed by Alexandre Julliard

mscoree: Add diagnostic CorGetSvc stub.

parent 8445055b
...@@ -24,7 +24,7 @@ ...@@ -24,7 +24,7 @@
@ stdcall CorBindToRuntimeHost(wstr wstr wstr ptr long ptr ptr ptr) @ stdcall CorBindToRuntimeHost(wstr wstr wstr ptr long ptr ptr ptr)
@ stub CorDllMainWorker @ stub CorDllMainWorker
@ stdcall CorExitProcess(long) @ stdcall CorExitProcess(long)
@ stub CorGetSvc @ stdcall CorGetSvc(ptr)
@ stdcall CorIsLatestSvc(ptr ptr) @ stdcall CorIsLatestSvc(ptr ptr)
@ stub CorMarkThreadInThreadPool @ stub CorMarkThreadInThreadPool
@ stub CorTickleSvc @ stub CorTickleSvc
......
...@@ -319,6 +319,13 @@ HRESULT WINAPI CorIsLatestSvc(int *unk1, int *unk2) ...@@ -319,6 +319,13 @@ HRESULT WINAPI CorIsLatestSvc(int *unk1, int *unk2)
return S_OK; return S_OK;
} }
HRESULT WINAPI CorGetSvc(void *unk)
{
ERR_(winediag)("If this function is called, it is likely the result of a broken .NET installation\n");
return E_NOTIMPL;
}
HRESULT WINAPI GetRequestedRuntimeInfo(LPCWSTR pExe, LPCWSTR pwszVersion, LPCWSTR pConfigurationFile, HRESULT WINAPI GetRequestedRuntimeInfo(LPCWSTR pExe, LPCWSTR pwszVersion, LPCWSTR pConfigurationFile,
DWORD startupFlags, DWORD runtimeInfoFlags, LPWSTR pDirectory, DWORD dwDirectory, DWORD *dwDirectoryLength, DWORD startupFlags, DWORD runtimeInfoFlags, LPWSTR pDirectory, DWORD dwDirectory, DWORD *dwDirectoryLength,
LPWSTR pVersion, DWORD cchBuffer, DWORD *dwlength) LPWSTR pVersion, DWORD cchBuffer, DWORD *dwlength)
......
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