Commit 5fd4f943 authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard

winex11.drv: Avoid using CONST.

parent 3a13dc59
...@@ -610,8 +610,7 @@ LRESULT WINAPI ImeEscape(HIMC hIMC, UINT uSubFunc, LPVOID lpData) ...@@ -610,8 +610,7 @@ LRESULT WINAPI ImeEscape(HIMC hIMC, UINT uSubFunc, LPVOID lpData)
return 0; return 0;
} }
BOOL WINAPI ImeProcessKey(HIMC hIMC, UINT vKey, LPARAM lKeyData, BOOL WINAPI ImeProcessKey(HIMC hIMC, UINT vKey, LPARAM lKeyData, const LPBYTE lpbKeyState)
CONST LPBYTE lpbKeyState)
{ {
/* See the comment at the head of this file */ /* See the comment at the head of this file */
TRACE("We do no processing via this route\n"); TRACE("We do no processing via this route\n");
...@@ -661,9 +660,8 @@ BOOL WINAPI ImeSetActiveContext(HIMC hIMC,BOOL fFlag) ...@@ -661,9 +660,8 @@ BOOL WINAPI ImeSetActiveContext(HIMC hIMC,BOOL fFlag)
return TRUE; return TRUE;
} }
UINT WINAPI ImeToAsciiEx (UINT uVKey, UINT uScanCode, UINT WINAPI ImeToAsciiEx (UINT uVKey, UINT uScanCode, const LPBYTE lpbKeyState,
CONST LPBYTE lpbKeyState, LPDWORD lpdwTransKey, LPDWORD lpdwTransKey, UINT fuState, HIMC hIMC)
UINT fuState, HIMC hIMC)
{ {
/* See the comment at the head of this file */ /* See the comment at the head of this file */
TRACE("We do no processing via this route\n"); TRACE("We do no processing via this route\n");
......
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