This function is an application-defined callback function. It is called as a result of a call to the EnumSystemLocales function, and receives a pointer to a string buffer that contains a locale identifier.
At a Glance
Windows CE versions: | 1.0 and later |
Syntax
BOOL CALLBACK EnumLocalesProc(LPWSTR lpLocaleString);
Parameters
lpLocaleString
[out] Pointer to a string buffer that contains a null-terminated locale identifier string.
Return Values
TRUE continues enumeration. FALSE stops enumeration.
Remarks
Windows CE supports only the Unicode version of this function.
An application registers an EnumLocalesProc function by passing its address to the EnumSystemLocales function.
See Also