comctl32: Fix InitCommonControlsEx prototype.
diff --git a/dlls/comctl32/commctrl.c b/dlls/comctl32/commctrl.c
index 2f08f75..9cfdc9b 100644
--- a/dlls/comctl32/commctrl.c
+++ b/dlls/comctl32/commctrl.c
@@ -627,7 +627,7 @@
*/
BOOL WINAPI
-InitCommonControlsEx (LPINITCOMMONCONTROLSEX lpInitCtrls)
+InitCommonControlsEx (const INITCOMMONCONTROLSEX *lpInitCtrls)
{
INT cCount;
DWORD dwMask;
diff --git a/include/commctrl.h b/include/commctrl.h
index e77dee2..7a931f8 100644
--- a/include/commctrl.h
+++ b/include/commctrl.h
@@ -36,7 +36,7 @@
DWORD dwICC;
} INITCOMMONCONTROLSEX, *LPINITCOMMONCONTROLSEX;
-BOOL WINAPI InitCommonControlsEx (LPINITCOMMONCONTROLSEX);
+BOOL WINAPI InitCommonControlsEx (const INITCOMMONCONTROLSEX*);
LANGID WINAPI GetMUILanguage (VOID);
VOID WINAPI InitMUILanguage (LANGID uiLang);