//! Low-level types used in FFI declarations.
pub type BOOL = i32;
pub type COMPTR = *mut c_void;
pub type HANDLE = *mut c_void;
pub type HRES = u32; // originally declared as i32
pub type PCSTR = *const u16;
pub type PCVOID = *const c_void;
pub type PFUNC = *const c_void;
pub type PSTR = *mut u16;
pub type PVOID = *mut c_void;