comctl32: Fix InitCommonControlsEx prototype.

oldstable
Thomas Weidenmueller 2007-01-19 13:40:04 +01:00 committed by Alexandre Julliard
parent 75c2184f87
commit fda7775c7d
2 changed files with 2 additions and 2 deletions

View File

@ -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;

View File

@ -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);