mscoree: Add diagnostic CorGetSvc stub.
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=45449 Signed-off-by: Vincent Povirk <vincent@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
8445055b72
commit
6e3d68b141
|
@ -24,7 +24,7 @@
|
|||
@ stdcall CorBindToRuntimeHost(wstr wstr wstr ptr long ptr ptr ptr)
|
||||
@ stub CorDllMainWorker
|
||||
@ stdcall CorExitProcess(long)
|
||||
@ stub CorGetSvc
|
||||
@ stdcall CorGetSvc(ptr)
|
||||
@ stdcall CorIsLatestSvc(ptr ptr)
|
||||
@ stub CorMarkThreadInThreadPool
|
||||
@ stub CorTickleSvc
|
||||
|
|
|
@ -319,6 +319,13 @@ HRESULT WINAPI CorIsLatestSvc(int *unk1, int *unk2)
|
|||
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,
|
||||
DWORD startupFlags, DWORD runtimeInfoFlags, LPWSTR pDirectory, DWORD dwDirectory, DWORD *dwDirectoryLength,
|
||||
LPWSTR pVersion, DWORD cchBuffer, DWORD *dwlength)
|
||||
|
|
Loading…
Reference in New Issue