Always print a message for generic stubs.

This commit is contained in:
Mike Hearn 2004-01-08 03:28:42 +00:00 committed by Alexandre Julliard
parent 6af0df45d6
commit 925a2f936e

View file

@ -2007,8 +2007,7 @@ LPVOID WINAPI GetPK16SysVar(void)
*/
void WINAPI CommonUnimpStub( CONTEXT86 *context )
{
if (context->Eax)
MESSAGE( "*** Unimplemented Win32 API: %s\n", (LPSTR)context->Eax );
FIXME("generic stub: %s\n", ((LPSTR)context->Eax ? (LPSTR)context->Eax : "?"));
switch ((context->Ecx >> 4) & 0x0f)
{