[2/4] msvcp90: Add codecvt structure definitions (try 2)

William Panlener wpanlener at gmail.com
Fri Apr 20 21:40:51 CDT 2012


---
 dlls/msvcp90/locale.c |   16 ++++++++++++++++
 1 file changed, 16 insertions(+)

diff --git a/dlls/msvcp90/locale.c b/dlls/msvcp90/locale.c
index 396f9ec..64bd1f8 100644
--- a/dlls/msvcp90/locale.c
+++ b/dlls/msvcp90/locale.c
@@ -88,6 +88,22 @@ typedef struct {
 } _Cvtvec;
 
 typedef struct {
+   locale_facet facet;
+} codecvt_base;
+
+typedef struct {
+    codecvt_base base;
+    _Ctypevec ctype;
+    _Cvtvec cvt;
+} codecvt_char;
+
+typedef struct {
+    codecvt_base base;
+    _Ctypevec ctype;
+    _Cvtvec cvt;
+} codecvt_wchar;
+
+typedef struct {
     locale_facet facet;
     _Collvec coll;
 } collate;
-- 
1.7.9.5




More information about the wine-patches mailing list