Commit 799c7715 authored by Piotr Caban's avatar Piotr Caban Committed by Alexandre Julliard

msvcp70: Fix basic_filebuf definition.

parent fecbc88d
......@@ -74,6 +74,9 @@ typedef struct {
MSVCP_bool wrotesome;
int state;
MSVCP_bool close;
#if _MSVCP_VER == 70
locale loc;
#endif
FILE *file;
} basic_filebuf_char;
......@@ -90,6 +93,9 @@ typedef struct {
MSVCP_bool wrotesome;
int state;
MSVCP_bool close;
#if _MSVCP_VER == 70
locale loc;
#endif
FILE *file;
} basic_filebuf_wchar;
......
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