Commit 21540b75 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

mscoree: _CorValidateImage() is a WINAPI function.

This fixes a winapi_check warning.
parent ab8d1e78
......@@ -186,7 +186,7 @@ void WINAPI _CorImageUnloading(LPCVOID* 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));
return E_FAIL;
......
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