From 16c9b10dc9a1e158a730e5852a15ba48ac1b6090 Mon Sep 17 00:00:00 2001 From: Alexandre Julliard Date: Wed, 20 Oct 2010 15:38:23 +0200 Subject: [PATCH] windebug: Avoid using the CONTEXT86 type. --- dlls/windebug.dll16/windebug.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/windebug.dll16/windebug.c b/dlls/windebug.dll16/windebug.c index 7b913b253dc..8b5baa71880 100644 --- a/dlls/windebug.dll16/windebug.c +++ b/dlls/windebug.dll16/windebug.c @@ -30,7 +30,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(dll); * WinNotify (WINDEBUG.3) * written without _any_ docu */ -void WINAPI WinNotify16(CONTEXT86 *context) +void WINAPI WinNotify16(CONTEXT *context) { FIXME("(AX=%04x):stub.\n", LOWORD(context->Eax)); switch (LOWORD(context->Eax))