Platform SDK: International Features

EnumDateFormatsProc

The EnumDateFormatsProc function is an application defined–callback function used with the EnumDateFormats function. It receives a pointer to a buffer containing a date format string. The DATEFMT_ENUMPROC type defines a pointer to this callback function. EnumDateFormatsProc is a placeholder for the application defined–function name.

BOOL CALLBACK EnumDateFormatsProc(
  LPTSTR lpDateFormatString   // date format string
);

Parameters

lpDateFormatString
[in] Pointer to a buffer containing a null-terminated date format string. This string is a long or short date format, depending on the value of the dwFlags parameter passed to EnumDateFormats.

Return Values

To continue enumeration, the callback function should return TRUE.

To stop enumeration, the callback function should return FALSE.

Remarks

An EnumDateFormatsProc function can carry out any desired task. An application registers an EnumDateFormatsProc function by passing its address to the EnumDateFormats function.

The date format strings are translated from Unicode to ANSI, for the ANSI version of this function, based on the default ANSI code page for the LCID. However, if LOCALE_USE_CP_ACP is specified, the translation is done using the system default ANSI code page.

Requirements

  Windows NT/2000: Requires Windows NT 3.1 or later.
  Windows 95/98: Requires Windows 98.
  Header: Declared in Winnls.h; include Windows.h.

See Also

National Language Support Overview, National Language Support Functions, EnumDateFormats