You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
467 B
26 lines
467 B
/*************************************************************/
|
|
/* Name: MSLCID.h
|
|
/* Description:
|
|
/*************************************************************/
|
|
#ifndef MSLCID_H_INCLUDE
|
|
#define MSLCID_H_INCLUDE
|
|
|
|
class MSLangID
|
|
{
|
|
public:
|
|
virtual ~MSLangID() {};
|
|
MSLangID();
|
|
|
|
struct LanguageList
|
|
{
|
|
UINT ResourceID;
|
|
WORD LangID;
|
|
};
|
|
|
|
int m_LLlength;
|
|
LanguageList* m_LL;
|
|
|
|
LPTSTR GetLangFromLangID(WORD langID);
|
|
};
|
|
|
|
#endif
|