Gets a list of all supported languages from a resource file
[C++]
BOOL ResListLanguages(
HINSTANCE hinst,
std::vector<LANGID>& listIDs,
LCTYPE lctype,
std::vector<CString>& listNames
);
Module handle of a resource file.
Will be populated with a list of the language IDs found.
The type of language information required. This parameter os one of the LCTYPE values accepted by the API function GetLocaleInfo.
Will be populated with a list of the information found for each language ID, as selected by lctype.
TRUE if the function succeeds, FALSE if it fails. It will fail if the resource
file handle is invalid, or if lctype is invalid.
This function lists all the languages available in a resource file.
Header: xllres.h