GetLocaleInfoA(3w)
NAME
GetLocaleInfoA (KERNEL32.@)
SYNOPSIS
INT GetLocaleInfoA ( LCID lcid, LCTYPE lctype, LPSTR buffer, INT len )
DESCRIPTION
Get information about an aspect of a locale.
PARAMS
lcid [In] LCID of the locale.
lctype [In] LCTYPE_ flags from "winnls.h".
buffer [Out] Destination for the information.
len [In] Length of buffer in characters.
RETURNS
Success: The size of the data requested. If buffer is non-NULL, it is
filled with the information.
Failure: 0. Use GetLastError(3w) to determine the cause.
NOTES
- LOCALE_NEUTRAL is equal to LOCALE_SYSTEM_DEFAULT
- The string returned is NUL terminated, except for LOCALE_FONTSIGNATURE, which is a bit string.
IMPLEMENTATION
Defined in "winnls.h".
Implemented in "build/buildd-wine-unstable_1.1.32-1+b1-amd64-KnxYu0/wine-unstable-1.1.32/build32/dlls/kernel32/locale.c".
- Debug channel "nls".