PType              25 transcode_data.h #define NOMAP	(PType 0x01)	/* single byte direct map */
PType              30 transcode_data.h #define INVALID	(PType 0x07)	/* invalid byte sequence */
PType              31 transcode_data.h #define UNDEF	(PType 0x09)	/* legal but undefined */
PType              32 transcode_data.h #define ZERObt	(PType 0x0A)	/* zero bytes of payload, i.e. remove */
PType              33 transcode_data.h #define FUNii	(PType 0x0B)	/* function from info to info */
PType              34 transcode_data.h #define FUNsi	(PType 0x0D)	/* function from start to info */
PType              35 transcode_data.h #define FUNio	(PType 0x0E)	/* function from info to output */
PType              36 transcode_data.h #define FUNso	(PType 0x0F)	/* function from start to output */
PType              37 transcode_data.h #define STR1	(PType 0x11)	/* string 4 <= len <= 259 bytes: 1byte length + content */
PType              38 transcode_data.h #define GB4bt	(PType 0x12)	/* GB18030 four bytes payload */
PType              45 transcode_data.h #define o1(b1)		(PType((((unsigned char)(b1))<<8)|ONEbt))
PType              46 transcode_data.h #define o2(b1,b2)	(PType((((unsigned char)(b1))<<8)|(((unsigned char)(b2))<<16)|TWObt))
PType              47 transcode_data.h #define o3(b1,b2,b3)	(PType(((((unsigned char)(b1))<<8)|(((unsigned char)(b2))<<16)|(((unsigned char)(b3))<<24)|THREEbt)&0xffffffffU))
PType              48 transcode_data.h #define o4(b0,b1,b2,b3)	(PType(((((unsigned char)(b1))<<8)|(((unsigned char)(b2))<<16)|(((unsigned char)(b3))<<24)|((((unsigned char)(b0))&0x07)<<5)|FOURbt)&0xffffffffU))
PType              49 transcode_data.h #define g4(b0,b1,b2,b3) (PType(((((unsigned char)(b0))<<8)|(((unsigned char)(b2))<<16)|((((unsigned char)(b1))&0x0f)<<24)|((((unsigned char)(b3))&0x0f)<<28)|GB4bt)&0xffffffffU))
PType              61 transcode_data.h #define o2FUNii(b1,b2)	(PType((((unsigned char)(b1))<<8)|(((unsigned char)(b2))<<16)|FUNii))