EnumDateFormatsProc

This function is an application-defined callback function. It is called as a result of a call to the EnumDateFormats function, and receives a pointer to a string buffer that contains a date format string.

At a Glance

Windows CE versions: 1.0 and later

Syntax

BOOL CALLBACK EnumDateFormatsProc(LPWSTR lpDateFormatString);

Parameters

lpDateFormatString

[out] Pointer to a string buffer that contains 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

TRUE continues enumeration. FALSE stops enumeration.

Remarks

Windows CE supports only the Unicode version of this function.

An EnumDateFormatsProc function can carry out any desired task.

An application registers an EnumDateFormatsProc function by passing its address to the EnumDateFormats function.

See Also

EnumDateFormats