Files
dosbox-x/include/shiftjis.h
2017-12-28 10:59:54 -08:00

14 lines
369 B
C++

struct ShiftJISDecoder {
ShiftJISDecoder();
void reset(void);
bool take(unsigned char c);
bool leadByteWaitingForSecondByte(void);
public:
unsigned char b1,b2;
bool fullwidth;
bool doublewide; /* character is displayed double-wide */
};