Commit fda7775c authored by Thomas Weidenmueller's avatar Thomas Weidenmueller Committed by Alexandre Julliard

comctl32: Fix InitCommonControlsEx prototype.

parent 75c2184f
...@@ -627,7 +627,7 @@ InitCommonControls (void) ...@@ -627,7 +627,7 @@ InitCommonControls (void)
*/ */
BOOL WINAPI BOOL WINAPI
InitCommonControlsEx (LPINITCOMMONCONTROLSEX lpInitCtrls) InitCommonControlsEx (const INITCOMMONCONTROLSEX *lpInitCtrls)
{ {
INT cCount; INT cCount;
DWORD dwMask; DWORD dwMask;
......
...@@ -36,7 +36,7 @@ typedef struct tagINITCOMMONCONTROLSEX { ...@@ -36,7 +36,7 @@ typedef struct tagINITCOMMONCONTROLSEX {
DWORD dwICC; DWORD dwICC;
} INITCOMMONCONTROLSEX, *LPINITCOMMONCONTROLSEX; } INITCOMMONCONTROLSEX, *LPINITCOMMONCONTROLSEX;
BOOL WINAPI InitCommonControlsEx (LPINITCOMMONCONTROLSEX); BOOL WINAPI InitCommonControlsEx (const INITCOMMONCONTROLSEX*);
LANGID WINAPI GetMUILanguage (VOID); LANGID WINAPI GetMUILanguage (VOID);
VOID WINAPI InitMUILanguage (LANGID uiLang); VOID WINAPI InitMUILanguage (LANGID uiLang);
......
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