Commit 2a8a1452 authored by Piotr Caban's avatar Piotr Caban Committed by Alexandre Julliard

msvcp80: Fix ostreambuf_iterator<char> structure definition.

parent 3cc34a5b
......@@ -351,6 +351,9 @@ typedef struct {
} istreambuf_iterator_char;
typedef struct {
#if _MSVCP_VER == 80
void *iter_container;
#endif
MSVCP_bool failed;
basic_streambuf_char *strbuf;
} ostreambuf_iterator_char;
......@@ -385,6 +388,9 @@ typedef struct {
} istreambuf_iterator_wchar;
typedef struct {
#if _MSVCP_VER == 80
void *iter_container;
#endif
MSVCP_bool failed;
basic_streambuf_wchar *strbuf;
} ostreambuf_iterator_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