//!
//! Primitive aliases matching the types referenced in the ICD.
//!
pub type Code1 = u8;
pub type Code2 = u16;
pub type Integer1 = u8;
pub type Integer2 = u16;
pub type Integer4 = u32;
pub type Real4 = f32;
pub type ScaledInteger1 = u8;
pub type ScaledInteger2 = u16;
pub type ScaledSInteger2 = i16;
pub type SInteger2 = i16;