| 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 |
| } ; |