[ros-diffs] [rharabien] 54065: [WIN32K] - Rename xxxDoHotKeyStuff to co_UserProcessHotKeys on smiley request

rharabien at svn.reactos.org rharabien at svn.reactos.org
Sun Oct 9 20:27:08 UTC 2011


Author: rharabien
Date: Sun Oct  9 20:27:08 2011
New Revision: 54065

URL: http://svn.reactos.org/svn/reactos?rev=54065&view=rev
Log:
[WIN32K] - Rename xxxDoHotKeyStuff to co_UserProcessHotKeys on smiley request

Modified:
    trunk/reactos/subsystems/win32/win32k/include/hotkey.h
    trunk/reactos/subsystems/win32/win32k/ntuser/hotkey.c
    trunk/reactos/subsystems/win32/win32k/ntuser/keyboard.c

Modified: trunk/reactos/subsystems/win32/win32k/include/hotkey.h
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/subsystems/win32/win32k/include/hotkey.h?rev=54065&r1=54064&r2=54065&view=diff
==============================================================================
--- trunk/reactos/subsystems/win32/win32k/include/hotkey.h [iso-8859-1] (original)
+++ trunk/reactos/subsystems/win32/win32k/include/hotkey.h [iso-8859-1] Sun Oct  9 20:27:08 2011
@@ -17,7 +17,7 @@
 PHOT_KEY_ITEM FASTCALL IsHotKey(UINT fsModifiers, WORD wVk);
 VOID FASTCALL UnregisterWindowHotKeys(PWND Window);
 VOID FASTCALL UnregisterThreadHotKeys(struct _ETHREAD *Thread);
-BOOL NTAPI xxxDoHotKeyStuff(WORD wVk, BOOL bIsDown);
+BOOL NTAPI co_UserProcessHotKeys(WORD wVk, BOOL bIsDown);
 UINT FASTCALL DefWndGetHotKey(HWND hwnd);
 INT FASTCALL DefWndSetHotKey(PWND pWnd, WPARAM wParam);
 

Modified: trunk/reactos/subsystems/win32/win32k/ntuser/hotkey.c
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/subsystems/win32/win32k/ntuser/hotkey.c?rev=54065&r1=54064&r2=54065&view=diff
==============================================================================
--- trunk/reactos/subsystems/win32/win32k/ntuser/hotkey.c [iso-8859-1] (original)
+++ trunk/reactos/subsystems/win32/win32k/ntuser/hotkey.c [iso-8859-1] Sun Oct  9 20:27:08 2011
@@ -144,7 +144,7 @@
 }
 
 BOOL NTAPI
-xxxDoHotKeyStuff(WORD wVk, BOOL bIsDown)
+co_UserProcessHotKeys(WORD wVk, BOOL bIsDown)
 {
     UINT fModifiers;
     PHOT_KEY_ITEM pHotKey;

Modified: trunk/reactos/subsystems/win32/win32k/ntuser/keyboard.c
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/subsystems/win32/win32k/ntuser/keyboard.c?rev=54065&r1=54064&r2=54065&view=diff
==============================================================================
--- trunk/reactos/subsystems/win32/win32k/ntuser/keyboard.c [iso-8859-1] (original)
+++ trunk/reactos/subsystems/win32/win32k/ntuser/keyboard.c [iso-8859-1] Sun Oct  9 20:27:08 2011
@@ -746,7 +746,7 @@
         wVkOtherSide = IntGetVkOtherSide(wVk);
         bWasDown = IS_KEY_DOWN(gafAsyncKeyState, wSimpleVk);
 
-        if (xxxDoHotKeyStuff(wSimpleVk, bIsDown))
+        if (co_UserProcessHotKeys(wSimpleVk, bIsDown))
             bPostMsg = FALSE;
 
         /* Update key without shifts */




More information about the Ros-diffs mailing list