Commit 925a2f93 authored by Mike Hearn's avatar Mike Hearn Committed by Alexandre Julliard

Always print a message for generic stubs.

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