mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-11 08:07:12 -06:00
9.34
This commit is contained in:
committed by
Kornel Lesiński
parent
83f8ddcc5b
commit
f08f4dcc3c
37
CPP/7zip/UI/Far/OverwriteDialogFar.h
Normal file
37
CPP/7zip/UI/Far/OverwriteDialogFar.h
Normal file
@@ -0,0 +1,37 @@
|
||||
// OverwriteDialogFar.h
|
||||
|
||||
#ifndef __OVERWRITE_DIALOG_FAR_H
|
||||
#define __OVERWRITE_DIALOG_FAR_H
|
||||
|
||||
#include "../../../Common/MyString.h"
|
||||
#include "../../../Common/MyTypes.h"
|
||||
|
||||
namespace NOverwriteDialog {
|
||||
|
||||
struct CFileInfo
|
||||
{
|
||||
bool SizeIsDefined;
|
||||
bool TimeIsDefined;
|
||||
UInt64 Size;
|
||||
FILETIME Time;
|
||||
UString Name;
|
||||
};
|
||||
|
||||
namespace NResult
|
||||
{
|
||||
enum EEnum
|
||||
{
|
||||
kYes,
|
||||
kYesToAll,
|
||||
kNo,
|
||||
kNoToAll,
|
||||
kAutoRename,
|
||||
kCancel
|
||||
};
|
||||
}
|
||||
|
||||
NResult::EEnum Execute(const CFileInfo &oldFileInfo, const CFileInfo &newFileInfo);
|
||||
|
||||
}
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user