use raw;
// https://developer.apple.com/documentation/objectivec/nsinteger?language=objc
pub type NSInteger = c_int;
pub type NSInteger = c_long;
// https://developer.apple.com/documentation/objectivec/nsuinteger?language=objc
pub type NSUInteger = c_uint;
pub type NSUInteger = c_ulong;