Commit 2835d78d authored by Alexandre Julliard's avatar Alexandre Julliard

kernel32: Remove the fixme about MB_USEGLYPHCHARS.

parent e6df00aa
......@@ -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:
......
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