Lines Matching refs:fmtw
295 WCHAR *fmtw;
297 fmtw = (WCHAR *)alloca(len_0 * sizeof(WCHAR));
298 if (fmtw == NULL) {
302 if (!MultiByteToWideChar(CP_ACP, 0, fmta, len_0, fmtw, len_0))
304 fmtw[i] = (WCHAR)fmta[i];
306 if (fmtw[i] == L'%')
309 switch (fmtw[i + 1]) {
327 fmtw[i + 1] = L'S';
330 fmtw[i + 1] = L's';
333 fmtw[i + 1] = L'C';
336 fmtw[i + 1] = L'c';
341 fmt = (const TCHAR *)fmtw;