diff options
author | skidd13 <skidd13@openttd.org> | 2007-12-25 13:59:21 +0000 |
---|---|---|
committer | skidd13 <skidd13@openttd.org> | 2007-12-25 13:59:21 +0000 |
commit | 7963963d982aed3176d3d05a09bed1293953ef88 (patch) | |
tree | 42ac53ed2682fd271d54bb7695ea73ba7053c2af /src/core | |
parent | b3f6c0734b2eba2ab6271ea0fbf669a526a33e3c (diff) | |
download | openttd-7963963d982aed3176d3d05a09bed1293953ef88.tar.xz |
(svn r11695) -Codechange: Converted the md5 algorithm to OOP
-Codechange: Adapt the md5 algorithm to the OpenTTD source
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/endian_func.hpp | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/src/core/endian_func.hpp b/src/core/endian_func.hpp index fa73f7f7e..1e639272c 100644 --- a/src/core/endian_func.hpp +++ b/src/core/endian_func.hpp @@ -25,27 +25,27 @@ /* Setup alignment and conversion macros */ #if defined(TTD_BIG_ENDIAN) - #define TO_BE32X(x) (x) - #define FROM_BE32(x) (x) - #define TO_BE32(x) (x) #define FROM_BE16(x) (x) + #define FROM_BE32(x) (x) #define TO_BE16(x) (x) + #define TO_BE32(x) (x) + #define TO_BE32X(x) (x) + #define FROM_LE16(x) BSWAP16(x) + #define FROM_LE32(x) BSWAP32(x) + #define TO_LE16(x) BSWAP16(x) + #define TO_LE32(x) BSWAP32(x) #define TO_LE32X(x) BSWAP32(x) - static inline uint32 FROM_LE32(uint32 x) { return BSWAP32(x); } - static inline uint32 TO_LE32(uint32 x) { return BSWAP32(x); } - static inline uint16 FROM_LE16(uint16 x) { return BSWAP16(x); } - static inline uint16 TO_LE16(uint16 x) { return BSWAP16(x); } #else + #define FROM_BE16(x) BSWAP16(x) + #define FROM_BE32(x) BSWAP32(x) + #define TO_BE16(x) BSWAP16(x) + #define TO_BE32(x) BSWAP32(x) #define TO_BE32X(x) BSWAP32(x) - static inline uint32 FROM_BE32(uint32 x) { return BSWAP32(x); } - static inline uint32 TO_BE32(uint32 x) { return BSWAP32(x); } - static inline uint16 FROM_BE16(uint16 x) { return BSWAP16(x); } - static inline uint16 TO_BE16(uint16 x) { return BSWAP16(x); } - #define TO_LE32X(x) (x) - #define FROM_LE32(x) (x) - #define TO_LE32(x) (x) #define FROM_LE16(x) (x) + #define FROM_LE32(x) (x) #define TO_LE16(x) (x) + #define TO_LE32(x) (x) + #define TO_LE32X(x) (x) #endif /* TTD_BIG_ENDIAN */ static inline uint16 ReadLE16Aligned(const void *x) |