From 7bcc4d28e158744841f0615feac114173f5a5fa9 Mon Sep 17 00:00:00 2001 From: skidd13 Date: Tue, 25 Dec 2007 13:59:21 +0000 Subject: (svn r11695) -Codechange: Converted the md5 algorithm to OOP -Codechange: Adapt the md5 algorithm to the OpenTTD source --- src/core/endian_func.hpp | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) (limited to 'src/core/endian_func.hpp') 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) -- cgit v1.2.3-70-g09d2