mirror of
https://github.com/joncampbell123/dosbox-x.git
synced 2025-05-07 18:36:09 +08:00
14 lines
390 B
C++
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 */
|
|
};
|