Files
easy7zip/CPP/Common/MyTypes.h
Igor Pavlov f08f4dcc3c 9.34
2016-05-28 00:16:51 +01:00

31 lines
344 B
C

// Common/MyTypes.h
#ifndef __COMMON_MY_TYPES_H
#define __COMMON_MY_TYPES_H
#include "../../C/7zTypes.h"
typedef int HRes;
struct CBoolPair
{
bool Val;
bool Def;
CBoolPair(): Val(false), Def(false) {}
void Init()
{
Val = false;
Def = false;
}
void SetTrueTrue()
{
Val = true;
Def = true;
}
};
#endif