Michael Stefaniuc : winemac.drv: Avoid using CONST.

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


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

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

winemac.drv: Avoid using CONST.

---

 dlls/winemac.drv/ime.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dlls/winemac.drv/ime.c b/dlls/winemac.drv/ime.c
index bed094d..5fca8fe 100644
--- a/dlls/winemac.drv/ime.c
+++ b/dlls/winemac.drv/ime.c
@@ -613,7 +613,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)
 {
     LPINPUTCONTEXT lpIMC;
     BOOL inIME;
@@ -700,7 +700,7 @@ BOOL WINAPI ImeSetActiveContext(HIMC hIMC, BOOL fFlag)
     return TRUE;
 }
 
-UINT WINAPI ImeToAsciiEx(UINT uVKey, UINT uScanCode, CONST LPBYTE lpbKeyState,
+UINT WINAPI ImeToAsciiEx(UINT uVKey, UINT uScanCode, const LPBYTE lpbKeyState,
                          LPDWORD lpdwTransKey, UINT fuState, HIMC hIMC)
 {
     UINT vkey;




More information about the wine-cvs mailing list