Piotr Caban : msvcp71: Fixed basic_filebuf class layout.

Alexandre Julliard julliard at winehq.org
Mon Jan 28 13:43:19 CST 2013


Module: wine
Branch: master
Commit: cbfe913a1a847614f5a0ca3850e875307fcf05f7
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=cbfe913a1a847614f5a0ca3850e875307fcf05f7

Author: Piotr Caban <piotr at codeweavers.com>
Date:   Sat Jan 26 14:38:03 2013 +0100

msvcp71: Fixed basic_filebuf class layout.

---

 dlls/msvcp71/ios.c |    4 ++++
 1 files changed, 4 insertions(+), 0 deletions(-)

diff --git a/dlls/msvcp71/ios.c b/dlls/msvcp71/ios.c
index e6a6e84..cbfc78b 100644
--- a/dlls/msvcp71/ios.c
+++ b/dlls/msvcp71/ios.c
@@ -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;




More information about the wine-cvs mailing list