InitCommonControlsEx function comctl32

int InitCommonControlsEx(
  1. Pointer<INITCOMMONCONTROLSEX> picce
)

Ensures that the common control DLL (Comctl32.dll) is loaded, and registers specific common control classes from the DLL. An application must call this function before creating a common control.

BOOL InitCommonControlsEx(
  const INITCOMMONCONTROLSEX *picce
);

Implementation

int InitCommonControlsEx(Pointer<INITCOMMONCONTROLSEX> picce) =>
    _InitCommonControlsEx(picce);