12 #ifndef ENDIAN_FUNC_HPP 13 #define ENDIAN_FUNC_HPP 19 #if TTD_ENDIAN == TTD_BIG_ENDIAN 20 #define FROM_BE16(x) (x) 21 #define FROM_BE32(x) (x) 22 #define TO_BE16(x) (x) 23 #define TO_BE32(x) (x) 24 #define TO_BE32X(x) (x) 25 #define FROM_LE16(x) BSWAP16(x) 26 #define FROM_LE32(x) BSWAP32(x) 27 #define TO_LE16(x) BSWAP16(x) 28 #define TO_LE32(x) BSWAP32(x) 29 #define TO_LE32X(x) BSWAP32(x) 31 #define FROM_BE16(x) BSWAP16(x) 32 #define FROM_BE32(x) BSWAP32(x) 33 #define TO_BE16(x) BSWAP16(x) 34 #define TO_BE32(x) BSWAP32(x) 35 #define TO_BE32X(x) BSWAP32(x) 36 #define FROM_LE16(x) (x) 37 #define FROM_LE32(x) (x) 38 #define TO_LE16(x) (x) 39 #define TO_LE32(x) (x) 40 #define TO_LE32X(x) (x) 43 static inline uint16 ReadLE16Aligned(
const void *x)
45 return FROM_LE16(*(
const uint16*)x);
48 static inline uint16 ReadLE16Unaligned(
const void *x)
50 #if OTTD_ALIGNMENT == 1 51 return ((
const byte*)x)[0] | ((
const byte*)x)[1] << 8;
53 return FROM_LE16(*(
const uint16*)x);
Definition of various endian-dependant macros.
Functions related to bit mathematics.