Lines Matching refs:fmtw
140 WCHAR *fmtw;
142 fmtw = (WCHAR *)alloca(len_0 * sizeof(WCHAR));
143 if (fmtw == NULL) {
147 if (!MultiByteToWideChar(CP_ACP, 0, fmta, len_0, fmtw, len_0))
149 fmtw[i] = (WCHAR)fmta[i];
151 if (fmtw[i] == L'%')
154 switch (fmtw[i + 1]) {
172 fmtw[i + 1] = L'S';
175 fmtw[i + 1] = L's';
178 fmtw[i + 1] = L'C';
181 fmtw[i + 1] = L'c';
186 fmt = (const TCHAR *)fmtw;