This commit is contained in:
Igor Pavlov
2005-05-30 00:00:00 +00:00
committed by Kornel Lesiński
parent 8c1b5c7b7e
commit 3c510ba80b
926 changed files with 40559 additions and 23519 deletions

View File

@@ -1,16 +1,15 @@
// Common/Lang.h
#pragma once
#ifndef __COMMON_LANG_H
#define __COMMON_LANG_H
#include "Common/Vector.h"
#include "Common/String.h"
#include "Common/Types.h"
struct CLangPair
{
UINT32 Value;
UInt32 Value;
UString String;
};
@@ -20,8 +19,8 @@ class CLang
public:
bool Open(LPCTSTR fileName);
void Clear() { _langPairs.Clear(); }
int FindItem(UINT32 value) const;
bool GetMessage(UINT32 value, UString &message) const;
int FindItem(UInt32 value) const;
bool GetMessage(UInt32 value, UString &message) const;
};
#endif