mod consts;
pub use consts::*;
use crate::typedefs::*;
#[link(name = "Comctl32")]
unsafe extern "system" {
pub unsafe fn InitCommonControlsEx(init_common_controls_ex: *const InitCommonControlsEx) -> BOOL;
}
#[repr(C)]
#[derive(finestre_init_with_size_derive::InitWithSize)]
pub struct InitCommonControlsEx {
pub size: DWORD,
pub init_common_controls: DWORD
}