00001 //Macros to convert endianness of arguments 00002 00003 #ifdef DF_LE 00004 #define ConvertLE(x) ; 00005 #define ConvertBE(x) SystemCode::SwapByteOrder(x); 00006 #else 00007 #define ConvertLE(x) SystemCode::SwapByteOrder(x); 00008 #define ConvertBE(x) ; 00009 #endif 00010