Bsoft object

enum SysType

Source:

include/utilities.h

Description:

System type enumeration.

Features:

BigIEEE must be the lowest number type
LittleIEEE must be the little-endian type with the lowest number

Code:

enum SysType {
Unknown_System = 0, // Indeterminate
BigIEEE = 1, // Big-endian IEEE (unix: MIPS, Motorola PPC)
BigOther = 5, // Big-endian systems other than IEEE
LittleIEEE = 6, // Little-endian IEEE (unix, Intel, VMS Alpha)
LittleAlpha = 7, // Little-endian VMS non-IEEE (Alpha)
LittleVAX = 8, // Little-endian VMS (VAX)
LittleOther = 10 // Little-endian other systems
} ;


Generated by bdoc.pl on Mon Jun 15 11:55:12 2009


Back to the Bsoft home