Commit cbfe913a authored by Piotr Caban's avatar Piotr Caban Committed by Alexandre Julliard

msvcp71: Fixed basic_filebuf class layout.

parent 236b4dae
......@@ -64,7 +64,9 @@ typedef enum {
typedef struct {
basic_streambuf_char base;
codecvt_char *cvt;
int state0;
char putback;
basic_string_char *conv;
MSVCP_bool wrotesome;
int state;
MSVCP_bool close;
......@@ -74,7 +76,9 @@ typedef struct {
typedef struct {
basic_streambuf_wchar base;
codecvt_wchar *cvt;
int state0;
wchar_t putback;
basic_string_char *conv;
MSVCP_bool wrotesome;
int state;
MSVCP_bool close;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment