GetNumberFormatA (KERNEL32.@)
INT GetNumberFormatA ( LCID lcid, DWORD dwFlags, LPCSTR lpszValue, const NUMBERFMTA* lpFormat, LPSTR lpNumberStr, int cchOut )
Format a number string for a given locale.
lcid | [In] | Locale to format for. |
dwFlags | [In] | LOCALE_ flags from "winnls.h". |
lpszValue | [In] | String to format. |
lpFormat | [In] | Formatting overrides. |
lpNumberStr | [Out] | Destination for formatted string. |
cchOut | [In] | Size of lpNumberStr, or 0 to calculate the resulting size. |
- lpszValue can contain only '0' - '9', '-' and '.'.
- If lpFormat is non-NULL, dwFlags must be 0. In this case lpszValue will be formatted according to the format details returned by GetLocaleInfoA.
- This function rounds the number string if the number of decimals exceeds the locales normal number of decimal places.
- If cchOut is 0, this function does not write to lpNumberStr.
- The Ascii version of this function fails if lcid is Unicode only.
Success: The number of character written to lpNumberStr, or that would have been written, if cchOut is 0.
Failure: 0. Use GetLastError to determine the cause.
Defined in "winnls.h".
Implemented in "dlls/kernel/lcformat.c". source.winehq.org/source/dlls/kernel/lcformat.c
Debug channel "nls".
Copyright © 2005 The Wine Project. All trademarks are the property of their respective owners. Visit WineHQ for license details. Generated Aug 2005.