msvcp70: Fix basic_filebuf definition.

This commit is contained in:
Piotr Caban 2014-12-25 16:50:22 +01:00 committed by Alexandre Julliard
parent fecbc88daf
commit 799c771587
1 changed files with 6 additions and 0 deletions

View File

@ -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;