dosbox-x/include/shiftjis.h
2021-08-22 15:47:10 +09:00

14 lines
390 B
C++

extern bool del_flag;
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 */
};