Files
easy7zip/CPP/7zip/UI/Common/ExtractMode.h
Igor Pavlov d9666cf046 4.44 beta
2016-05-28 00:15:49 +01:00

32 lines
401 B
C++
Executable File

// ExtractMode.h
#ifndef __EXTRACT_MODE_H
#define __EXTRACT_MODE_H
namespace NExtract {
namespace NPathMode
{
enum EEnum
{
kFullPathnames,
kCurrentPathnames,
kNoPathnames
};
}
namespace NOverwriteMode
{
enum EEnum
{
kAskBefore,
kWithoutPrompt,
kSkipExisting,
kAutoRename,
kAutoRenameExisting
};
}
}
#endif