[KERNEL32]

warn about unimplemented MB_ERR_INVALID_CHARS case

svn path=/trunk/; revision=68301
This commit is contained in:
Christoph von Wittich 2015-06-28 13:06:43 +00:00
parent f399e4f3e4
commit ec8ef644e3

View file

@ -451,13 +451,17 @@ IntMultiByteToWideCharCP(UINT CodePage,
/* Different handling for DBCS code pages. */
if (CodePageTable->MaximumCharacterSize > 1)
{
/* FIXME */
UCHAR Char;
USHORT DBCSOffset;
LPCSTR MbsEnd = MultiByteString + MultiByteCount;
INT Count;
if (Flags & MB_ERR_INVALID_CHARS)
{
/* FIXME */
DPRINT1("IntMultiByteToWideCharCP: MB_ERR_INVALID_CHARS case not implemented!\n");
}
/* Does caller query for output buffer size? */
if (WideCharCount == 0)
{