DOSBox-X
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Defines
include/shiftjis.h
00001 
00002 struct ShiftJISDecoder {
00003                         ShiftJISDecoder();
00004 
00005     void                reset(void);
00006     bool                take(unsigned char c);
00007     bool                leadByteWaitingForSecondByte(void);
00008 public:
00009     unsigned char       b1,b2;
00010     bool                fullwidth;
00011     bool                doublewide; /* character is displayed double-wide */
00012 };
00013