Alexandre Julliard : user.exe: Avoid using the CONTEXT86 type.

Alexandre Julliard julliard at winehq.org
Wed Oct 20 13:24:42 CDT 2010


Module: wine
Branch: master
Commit: d86df456022732da7663a70a92fb06a9e7689ec3
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=d86df456022732da7663a70a92fb06a9e7689ec3

Author: Alexandre Julliard <julliard at winehq.org>
Date:   Wed Oct 20 15:37:22 2010 +0200

user.exe: Avoid using the CONTEXT86 type.

---

 dlls/user.exe16/message.c |    2 +-
 dlls/user.exe16/user.c    |    4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/dlls/user.exe16/message.c b/dlls/user.exe16/message.c
index c642e85..b10b761 100644
--- a/dlls/user.exe16/message.c
+++ b/dlls/user.exe16/message.c
@@ -243,7 +243,7 @@ static LRESULT call_window_proc16( HWND16 hwnd, UINT16 msg, WPARAM16 wParam, LPA
 {
     WNDPROC16 func = arg;
     int index = winproc_to_index( func );
-    CONTEXT86 context;
+    CONTEXT context;
     size_t size = 0;
     struct
     {
diff --git a/dlls/user.exe16/user.c b/dlls/user.exe16/user.c
index 710ed62..030dd0d 100644
--- a/dlls/user.exe16/user.c
+++ b/dlls/user.exe16/user.c
@@ -1809,7 +1809,7 @@ BOOL16 WINAPI SetDeskWallPaper16( LPCSTR filename )
 /***********************************************************************
  *		keybd_event (USER.289)
  */
-void WINAPI keybd_event16( CONTEXT86 *context )
+void WINAPI keybd_event16( CONTEXT *context )
 {
     DWORD dwFlags = 0;
 
@@ -1824,7 +1824,7 @@ void WINAPI keybd_event16( CONTEXT86 *context )
 /***********************************************************************
  *		mouse_event (USER.299)
  */
-void WINAPI mouse_event16( CONTEXT86 *context )
+void WINAPI mouse_event16( CONTEXT *context )
 {
     mouse_event( LOWORD(context->Eax), LOWORD(context->Ebx), LOWORD(context->Ecx),
                  LOWORD(context->Edx), MAKELONG(context->Esi, context->Edi) );




More information about the wine-cvs mailing list