Lines Matching refs:formatInfo
295 FormatInfo formatInfo; in format() local
297 formatInfo = *fFormatInfo; in format()
302 formatInfo.currency.NumDigits = (UINT) numDigits; in format()
306 formatInfo.currency.Grouping = 0; in format()
309 … result = GetCurrencyFormatW(fLCID, 0, nBuffer, &formatInfo.currency, buffer, STACK_BUFFER_SIZE); in format()
315 … int newLength = GetCurrencyFormatW(fLCID, 0, nBuffer, &formatInfo.currency, NULL, 0); in format()
319 GetCurrencyFormatW(fLCID, 0, nBuffer, &formatInfo.currency, buffer, newLength); in format()
324 formatInfo.number.NumDigits = (UINT) numDigits; in format()
328 formatInfo.number.Grouping = 0; in format()
331 result = GetNumberFormatW(fLCID, 0, nBuffer, &formatInfo.number, buffer, STACK_BUFFER_SIZE); in format()
335 int newLength = GetNumberFormatW(fLCID, 0, nBuffer, &formatInfo.number, NULL, 0); in format()
339 GetNumberFormatW(fLCID, 0, nBuffer, &formatInfo.number, buffer, newLength); in format()