mscoree: _CorValidateImage() is a WINAPI function.
This fixes a winapi_check warning.
This commit is contained in:
parent
ab8d1e788a
commit
21540b7591
|
@ -186,7 +186,7 @@ void WINAPI _CorImageUnloading(LPCVOID* imageBase)
|
||||||
TRACE("(%p): stub\n", imageBase);
|
TRACE("(%p): stub\n", imageBase);
|
||||||
}
|
}
|
||||||
|
|
||||||
DWORD _CorValidateImage(LPCVOID* imageBase, LPCWSTR imageName)
|
DWORD WINAPI _CorValidateImage(LPCVOID* imageBase, LPCWSTR imageName)
|
||||||
{
|
{
|
||||||
TRACE("(%p, %s): stub\n", imageBase, debugstr_w(imageName));
|
TRACE("(%p, %s): stub\n", imageBase, debugstr_w(imageName));
|
||||||
return E_FAIL;
|
return E_FAIL;
|
||||||
|
|
Loading…
Reference in New Issue