Lines Matching refs:chars
39 int chars = WideCharToMultiByte(CP_ACP, 0, wstr, -1, NULL, 0, NULL, NULL);
40 if (chars == 0)
42 char *mbstr = new char[chars];
43 chars = WideCharToMultiByte(CP_ACP, 0, wstr, -1, mbstr, chars, NULL, NULL);
44 if (chars == 0)
51 int chars = MultiByteToWideChar(CP_ACP, 0, mbstr, -1, NULL, 0);
52 if (chars == 0)
54 wchar_t *wstr = new wchar_t[chars];
55 chars = MultiByteToWideChar(CP_ACP, 0, mbstr, -1, wstr, chars);
56 if (chars == 0)