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
InitCommonControlsEx (LPINITCOMMONCONTROLSEX lpInitCtrls)
InitCommonControlsEx (const INITCOMMONCONTROLSEX *lpInitCtrls)
{
INT cCount;
DWORD dwMask;

View File

@ -36,7 +36,7 @@ typedef struct tagINITCOMMONCONTROLSEX {
DWORD dwICC;
} INITCOMMONCONTROLSEX, *LPINITCOMMONCONTROLSEX;
BOOL WINAPI InitCommonControlsEx (LPINITCOMMONCONTROLSEX);
BOOL WINAPI InitCommonControlsEx (const INITCOMMONCONTROLSEX*);
LANGID WINAPI GetMUILanguage (VOID);
VOID WINAPI InitMUILanguage (LANGID uiLang);