mscoree: Add a stub for GetVersionFromProcess.
This commit is contained in:
parent
d8570f7aae
commit
1421c1a447
|
@ -63,7 +63,7 @@
|
|||
@ stub GetStartupFlags
|
||||
@ stub GetTargetForVTableEntry
|
||||
@ stub GetTokenForVTableEntry
|
||||
@ stub GetVersionFromProcess
|
||||
@ stdcall GetVersionFromProcess(ptr ptr long ptr)
|
||||
@ stub GetXMLElement
|
||||
@ stub GetXMLElementAttribute
|
||||
@ stub GetXMLObject
|
||||
|
|
|
@ -264,3 +264,9 @@ HRESULT WINAPI GetAssemblyMDImport(LPCWSTR szFileName, REFIID riid, IUnknown **p
|
|||
FIXME("(%p %s, %p, %p): stub\n", szFileName, debugstr_w(szFileName), riid, *ppIUnk);
|
||||
return ERROR_CALL_NOT_IMPLEMENTED;
|
||||
}
|
||||
|
||||
HRESULT WINAPI GetVersionFromProcess(HANDLE hProcess, LPWSTR pVersion, DWORD cchBuffer, DWORD *dwLength)
|
||||
{
|
||||
FIXME("(%p, %p, %d, %p): stub\n", hProcess, pVersion, cchBuffer, dwLength);
|
||||
return E_NOTIMPL;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue