comctl32: Constify some variables (4 of 4) (Resend)

Andrew Talbot Andrew.Talbot at talbotville.com
Mon Mar 26 12:58:54 CDT 2007


Changelog:
    comctl32: Constify some variables.

diff -urN a/dlls/comctl32/hotkey.c b/dlls/comctl32/hotkey.c
--- a/dlls/comctl32/hotkey.c	2007-03-19 17:26:40.000000000 +0000
+++ b/dlls/comctl32/hotkey.c	2007-03-24 18:25:54.000000000 +0000
@@ -63,7 +63,7 @@
 #define IsOnlySet(flags) (infoPtr->CurrMod == (flags))
 
 static BOOL
-HOTKEY_IsCombInv(HOTKEY_INFO *infoPtr)
+HOTKEY_IsCombInv(const HOTKEY_INFO *infoPtr)
 {
     TRACE("(infoPtr=%p)\n", infoPtr);
     if((infoPtr->InvComb & HKCOMB_NONE) && !infoPtr->CurrMod)
@@ -197,7 +197,7 @@
 }
 
 static LRESULT
-HOTKEY_GetHotKey(HOTKEY_INFO *infoPtr)
+HOTKEY_GetHotKey(const HOTKEY_INFO *infoPtr)
 {
     TRACE("(infoPtr=%p) Modifiers: 0x%x, Virtual Key: %d\n", infoPtr, 
           HIBYTE(infoPtr->HotKey), LOBYTE(infoPtr->HotKey));
@@ -226,7 +226,7 @@
 
 
 static LRESULT
-HOTKEY_Create (HOTKEY_INFO *infoPtr, LPCREATESTRUCTW lpcs)
+HOTKEY_Create (HOTKEY_INFO *infoPtr, const CREATESTRUCTW *lpcs)
 {
     infoPtr->hwndNotify = lpcs->hwndParent;
 
@@ -248,7 +248,7 @@
 
 
 static LRESULT
-HOTKEY_EraseBackground (HOTKEY_INFO *infoPtr, HDC hdc)
+HOTKEY_EraseBackground (const HOTKEY_INFO *infoPtr, HDC hdc)
 {
     HBRUSH hBrush, hSolidBrush = NULL;
     RECT   rc;
@@ -275,7 +275,7 @@
 
 
 static inline LRESULT
-HOTKEY_GetFont (HOTKEY_INFO *infoPtr)
+HOTKEY_GetFont (const HOTKEY_INFO *infoPtr)
 {
     return (LRESULT)infoPtr->hFont;
 }
@@ -393,7 +393,7 @@
 
 
 static LRESULT
-HOTKEY_LButtonDown (HOTKEY_INFO *infoPtr)
+HOTKEY_LButtonDown (const HOTKEY_INFO *infoPtr)
 {
     if (!(GetWindowLongW(infoPtr->hwndSelf, GWL_STYLE) & WS_DISABLED))
         SetFocus (infoPtr->hwndSelf);
@@ -403,7 +403,7 @@
 
 
 static inline LRESULT
-HOTKEY_NCCreate (HWND hwnd, LPCREATESTRUCTW lpcs)
+HOTKEY_NCCreate (HWND hwnd, const CREATESTRUCTW *lpcs)
 {
     HOTKEY_INFO *infoPtr;
     DWORD dwExStyle = GetWindowLongW (hwnd, GWL_EXSTYLE);



More information about the wine-patches mailing list