Loads a string from the resource file, for a particular locale
[C++]
BOOL XllLoadStringForLocale(
UINT resid,
LCID lcid,
CString& str
);
Numeric resource string identifier.
The locale ID of the desired locale. This can be formed using the MAKELCID(...) macro, or found using GetThreadLocale().
If the function succeeds, the string will be loaded into this variable.
TRUE if the function succeeds, FALSE if it fails. It will fail if the
current resource file handle is invalid, or if the resource cannot be found.
The function searches for a string resource in the language implied by the locale.
It is equivalent to calling:
XllLoadStringForLanguage(resid, LANGIDFROMLCID(lcid), str);
Header: xllres.h