kernel32: Print a FIXME only once.
This commit is contained in:
parent
31a9b087c1
commit
15446fb9c0
|
@ -1524,6 +1524,7 @@ INT WINAPI MultiByteToWideChar( UINT page, DWORD flags, LPCSTR src, INT srclen,
|
||||||
{
|
{
|
||||||
const union cptable *table;
|
const union cptable *table;
|
||||||
int ret;
|
int ret;
|
||||||
|
static int once;
|
||||||
|
|
||||||
if (!src || (!dst && dstlen))
|
if (!src || (!dst && dstlen))
|
||||||
{
|
{
|
||||||
|
@ -1533,7 +1534,11 @@ INT WINAPI MultiByteToWideChar( UINT page, DWORD flags, LPCSTR src, INT srclen,
|
||||||
|
|
||||||
if (srclen < 0) srclen = strlen(src) + 1;
|
if (srclen < 0) srclen = strlen(src) + 1;
|
||||||
|
|
||||||
if (flags & MB_USEGLYPHCHARS) FIXME("MB_USEGLYPHCHARS not supported\n");
|
if (!once && (flags & MB_USEGLYPHCHARS))
|
||||||
|
{
|
||||||
|
once = 1;
|
||||||
|
FIXME("MB_USEGLYPHCHARS not supported\n");
|
||||||
|
}
|
||||||
|
|
||||||
switch(page)
|
switch(page)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue