InitCommonControlsEx(3w)
NAME
InitCommonControlsEx (COMCTL32.@)
SYNOPSIS
BOOL InitCommonControlsEx
(
const INITCOMMONCONTROLSEX* lpInitCtrls
)
DESCRIPTION
Registers the common controls.
PARAMS
lpInitCtrls [In] pointer to an INITCOMMONCONTROLS structure.
RETURNS
Success: TRUE
Failure: FALSE.
NOTES
Probably all versions of comctl32 initializes the Win95 controls in
DllMain during dll initialization. Starting from comctl32 v5.82 all the
controls are initialized there. We follow this behaviour and this function is just a dummy.
Note: when writing programs under Windows, if you don't call any function from comctl32 the linker may not link this DLL. If InitCommonControlsEx was the only comctl32 function you were calling and you remove
it you may have a FALSE impression that InitCommonControlsEx actually
did something.
IMPLEMENTATION
Defined in "commctrl.h".
Implemented in "build/buildd-wine-unstable_1.1.32-1+b1-amd64-KnxYu0/wine-unstable-1.1.32/build32/dlls/comctl32/commctrl.c".
- Debug channel "commctrl".