Michael Stefaniuc : winex11.drv: Avoid using CONST.

Alexandre Julliard julliard at winehq.org
Tue Sep 24 15:16:48 CDT 2013


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

Author: Michael Stefaniuc <mstefani at redhat.de>
Date:   Tue Sep 24 12:27:27 2013 +0200

winex11.drv: Avoid using CONST.

---

 dlls/winex11.drv/ime.c |    8 +++-----
 1 files changed, 3 insertions(+), 5 deletions(-)

diff --git a/dlls/winex11.drv/ime.c b/dlls/winex11.drv/ime.c
index 6a99c24..2822f3e 100644
--- a/dlls/winex11.drv/ime.c
+++ b/dlls/winex11.drv/ime.c
@@ -610,8 +610,7 @@ LRESULT WINAPI ImeEscape(HIMC hIMC, UINT uSubFunc, LPVOID lpData)
     return 0;
 }
 
-BOOL WINAPI ImeProcessKey(HIMC hIMC, UINT vKey, LPARAM lKeyData,
-                             CONST LPBYTE lpbKeyState)
+BOOL WINAPI ImeProcessKey(HIMC hIMC, UINT vKey, LPARAM lKeyData, const LPBYTE lpbKeyState)
 {
     /* See the comment at the head of this file */
     TRACE("We do no processing via this route\n");
@@ -661,9 +660,8 @@ BOOL WINAPI ImeSetActiveContext(HIMC hIMC,BOOL fFlag)
     return TRUE;
 }
 
-UINT WINAPI ImeToAsciiEx (UINT uVKey, UINT uScanCode,
-                          CONST LPBYTE lpbKeyState, LPDWORD lpdwTransKey,
-                          UINT fuState, HIMC hIMC)
+UINT WINAPI ImeToAsciiEx (UINT uVKey, UINT uScanCode, const LPBYTE lpbKeyState,
+                          LPDWORD lpdwTransKey, UINT fuState, HIMC hIMC)
 {
     /* See the comment at the head of this file */
     TRACE("We do no processing via this route\n");




More information about the wine-cvs mailing list