A CLongLong is a signed type, not unsigned.

This commit is contained in:
Myrddin Dundragon 2018-04-15 02:47:03 -04:00
parent cc4a6fe411
commit 824605a198

View File

@ -43,7 +43,7 @@ pub type CShort = i16;
pub type CUShort = u16;
pub type CInt = i32;
pub type CUInt = u32;
pub type CLongLong = u64;
pub type CLongLong = i64;
pub type CULongLong = u64;
pub type CFloat = f32;
pub type CDouble = f64;