mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-12 18:11:35 -06:00
4.20
This commit is contained in:
committed by
Kornel Lesiński
parent
8c1b5c7b7e
commit
3c510ba80b
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user