Enumerates the time formats that are available for a locale specified by name.
Note
The application should call this function in preference to EnumTimeFormats if designed to run only on Windows Vista and later.
Note
This function can enumerate data that changes between releases, for example, due to a custom locale. If your application must persist or transmit data, see Using Persistent Locale Data.
BOOL EnumTimeFormatsEx(
TIMEFMT_ENUMPROCEX lpTimeFmtEnumProcEx,
LPCWSTR lpLocaleName,
DWORD dwFlags,
LPARAM lParam
)
lpTimeFmtEnumProcEx
Type: TIMEFMT_ENUMPROCEX
Pointer to an application-defined callback function. For more information, see EnumTimeFormatsProcEx.
lpLocaleName
Type: LPCWSTR
Pointer to a locale name, or one of the following predefined values.
dwFlags
Type: DWORD
The time format. Set to 0 to use the current user’s long time format, or TIME_NOSECONDS (starting with Windows 7) to use the short time format.
lParam
Type: LPARAM
An application-provided parameter to be passed to the callback function. This is especially useful for multi-threaded applications.
Type: BOOL
Returns a nonzero value if successful, or 0 otherwise. To get extended error information, the application can call GetLastError, which can return one of the following error codes:
This function enumerates the time formats by passing time format string pointers, one at a time, to the specified application-defined callback function, along with an application-defined constant that is useful for multi-threaded applications. The first value in the enumeration is always the user default (override) value. The function continues enumeration until the last time format is found or the callback function returns FALSE.
Beginning in Windows 8: If your app passes language tags to this function from the Windows.Globalization namespace, it must first convert the tags by calling ResolveLocaleName.
Header: Declared in winnls.h.
Library: Use kernelx.lib.