msvcp71: Fixed basic_filebuf class layout.
This commit is contained in:
parent
236b4dae4a
commit
cbfe913a1a
|
@ -64,7 +64,9 @@ typedef enum {
|
||||||
typedef struct {
|
typedef struct {
|
||||||
basic_streambuf_char base;
|
basic_streambuf_char base;
|
||||||
codecvt_char *cvt;
|
codecvt_char *cvt;
|
||||||
|
int state0;
|
||||||
char putback;
|
char putback;
|
||||||
|
basic_string_char *conv;
|
||||||
MSVCP_bool wrotesome;
|
MSVCP_bool wrotesome;
|
||||||
int state;
|
int state;
|
||||||
MSVCP_bool close;
|
MSVCP_bool close;
|
||||||
|
@ -74,7 +76,9 @@ typedef struct {
|
||||||
typedef struct {
|
typedef struct {
|
||||||
basic_streambuf_wchar base;
|
basic_streambuf_wchar base;
|
||||||
codecvt_wchar *cvt;
|
codecvt_wchar *cvt;
|
||||||
|
int state0;
|
||||||
wchar_t putback;
|
wchar_t putback;
|
||||||
|
basic_string_char *conv;
|
||||||
MSVCP_bool wrotesome;
|
MSVCP_bool wrotesome;
|
||||||
int state;
|
int state;
|
||||||
MSVCP_bool close;
|
MSVCP_bool close;
|
||||||
|
|
Loading…
Reference in New Issue