update for HEAD-2003091401
[reactos.git] / lib / kernel32 / misc / mbchars.c
index 32e5135..d4116b4 100644 (file)
@@ -63,6 +63,8 @@ IsInstalledCP(UINT CodePage)
  *  NEVER multi-byte (that is each input character is
  *  8-bit ASCII) and is ALWAYS NULL terminated.
  *  FIXME-FIXME-FIXME-FIXME
+ *
+ * @implemented
  */
 INT
 STDCALL
@@ -102,7 +104,7 @@ MultiByteToWideChar(
     //if (-1 == cchMultiByte)
     if (cchMultiByte < 0)
     {
-        InStringLength = lstrlen(lpMultiByteStr) + 1;
+        InStringLength = lstrlenA(lpMultiByteStr) + 1;
     }
     else
     {
@@ -209,8 +211,9 @@ MultiByteToWideChar(
  *  A raw converter for now. It just cuts off the upper 9 Bit.
  *  So the MBCS-string does not contain any LeadCharacters
  *  FIXME - FIXME - FIXME - FIXME
+ *
+ * @implemented
  */
-
 int
 STDCALL
 WideCharToMultiByte(