1 2 3 4 5 6 7 8
use libc::*; pub type Float32 = c_float; pub type Int16 = c_short; pub type Int32 = c_int; pub type UInt16 = c_ushort; pub type UInt32 = c_uint; pub type UInt8 = c_uchar;
1 2 3 4 5 6 7 8
use libc::*; pub type Float32 = c_float; pub type Int16 = c_short; pub type Int32 = c_int; pub type UInt16 = c_ushort; pub type UInt32 = c_uint; pub type UInt8 = c_uchar;