Alexandre Julliard : kernel32: Remove the fixme about MB_USEGLYPHCHARS.

Alexandre Julliard julliard at wine.codeweavers.com
Wed May 30 08:56:46 CDT 2007


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

Author: Alexandre Julliard <julliard at winehq.org>
Date:   Tue May 29 23:31:35 2007 +0200

kernel32: Remove the fixme about MB_USEGLYPHCHARS.

---

 dlls/kernel32/locale.c |    7 -------
 1 files changed, 0 insertions(+), 7 deletions(-)

diff --git a/dlls/kernel32/locale.c b/dlls/kernel32/locale.c
index 74593e5..859f30a 100644
--- a/dlls/kernel32/locale.c
+++ b/dlls/kernel32/locale.c
@@ -1764,7 +1764,6 @@ INT WINAPI MultiByteToWideChar( UINT page, DWORD flags, LPCSTR src, INT srclen,
 {
     const union cptable *table;
     int ret;
-    static int once;
 
     if (!src || (!dst && dstlen))
     {
@@ -1774,12 +1773,6 @@ INT WINAPI MultiByteToWideChar( UINT page, DWORD flags, LPCSTR src, INT srclen,
 
     if (srclen < 0) srclen = strlen(src) + 1;
 
-    if (!once && (flags & MB_USEGLYPHCHARS))
-    {
-        once = 1;
-        FIXME("MB_USEGLYPHCHARS not supported\n");
-    }
-
     switch(page)
     {
     case CP_SYMBOL:




More information about the wine-cvs mailing list