Scroll to navigation

EnumSystemLocalesA(3w) Wine API EnumSystemLocalesA(3w)

NAME

EnumSystemLocalesA (KERNEL32.@)

SYNOPSIS

BOOL EnumSystemLocalesA
(
LOCALE_ENUMPROCA lpfnLocaleEnum,
DWORD dwFlags
)
 

DESCRIPTION

Call a users function for each locale available on the system.
 

PARAMS

lpfnLocaleEnum [In] Callback function to call for each locale.
dwFlags [In] LOCALE_SUPPORTED=All supported, LOCALE_INSTALLED=Installed only.
 

RETURNS

Success: TRUE.
Failure: FALSE. Use GetLastError(3w) to determine the cause.
 

IMPLEMENTATION

Declared in "winnls.h".
Implemented in "dlls/kernel32/locale.c".
Debug channel "nls".
Oct 2012 Wine API