WORD->LANGID

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@1593 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
kichik 2002-11-05 16:14:32 +00:00
parent fd8040478f
commit 6e237675ed
5 changed files with 16 additions and 16 deletions

View file

@ -95,11 +95,11 @@ class NLF {
NLF(char *filename);
~NLF();
WORD GetLang();
LANGID GetLang();
char* GetString(int idx);
private:
WORD m_wLangId;
LANGID m_wLangId;
char *m_szStrings[NLF_STRINGS];
};