finestre-sys 0.1.1

Bare-bones bindings for a very limited subset of the Win32 API. Advise you use the official windows-sys crate instead.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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
}