A CLongLong is a signed type, not unsigned.
This commit is contained in:
@ -43,7 +43,7 @@ pub type CShort = i16;
|
|||||||
pub type CUShort = u16;
|
pub type CUShort = u16;
|
||||||
pub type CInt = i32;
|
pub type CInt = i32;
|
||||||
pub type CUInt = u32;
|
pub type CUInt = u32;
|
||||||
pub type CLongLong = u64;
|
pub type CLongLong = i64;
|
||||||
pub type CULongLong = u64;
|
pub type CULongLong = u64;
|
||||||
pub type CFloat = f32;
|
pub type CFloat = f32;
|
||||||
pub type CDouble = f64;
|
pub type CDouble = f64;
|
||||||
|
Reference in New Issue
Block a user