24 #ifndef __TxtExpUtils_H__ 25 #define __TxtExpUtils_H__ 29 #include "ITxtExpFileWriter.h" 42 #define GETHIBYTE(w) ((uchar)(((uint16)(w) >> 8) & 0xFF)) 46 #define GETLOBYTE(w) ((uchar)(w) & 0xFF) 49 #ifndef MAKEBIGENDIANWORD 50 #define MAKEBIGENDIANWORD(hb, lb) ((uint16) ( ((uchar)(lb)) + ( ((uint16)((uchar)(hb))) << 8) ) ) 54 #define SWAPWORD(s) MAKEBIGENDIANWORD(GETLOBYTE(s), GETHIBYTE(s)) 147 static const textchar k_fKatakanaLookup[][2];
156 static int32 FindKatakanaIndex(
const textchar uc,
const int32 lookAtWhichColumn);
159 #endif //#ifndef __TxtExpUtils_H__