EnumUILanguages (Windows CE 5.0)

Send Feedback

This function enumerates the UI languages that are available on the system.

BOOL EnumUILanguages(UILANGUAGE_ENUMPROC lpUILanguageEnumProc,DWORDdwFlags);

Parameters

  • lpUILanguageEnumProc
    Points to an application-defined callback function. The EnumUILanguages function enumerates language identifiers by making repeated calls to this callback function. For more information, see the EnumUILanguagesProc callback function.
  • dwFlags
    Reserved. Must be zero.

Return Values

If the function succeeds, the return value is TRUE. If the function fails, the return value is FALSE. To get extended error information, call the GetLastError function.

The following table shows possible return values for the GetLastError function.

Value Description
ERROR_BADDB The configuration registry database is corrupt.
ERROR_INVALID_PARAMETER The parameter is incorrect.
ERROR_INVALID FLAGS The flags are invalid.

Remarks

The value of the dwFlags parameter must be zero. The function enumerates the UI languages by passing language identifiers, one at a time, to the specified application-defined callback function. This continues until the last language identifier is found or the callback function returns FALSE.

Requirements

OS Versions: Windows CE .NET 4.0 and later.
Header: Windows.h.
Link Library: Coreloc.lib.

See Also

EnumUILanguagesProc | GetSystemDefaultUILanguage | GetUserDefaultUILanguage

Send Feedback on this topic to the authors

Feedback FAQs

© 2006 Microsoft Corporation. All rights reserved.