cobin/
runtime.rs

1mod ns_object;
2
3pub type NSUInteger = usize;
4pub type NSInteger = isize;
5pub const NIL: *mut NSObject = 0 as *mut NSObject;
6
7pub use ns_object::{NSObject, NSObjectBase, NSObjectProtocol};