mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-14 02:11:40 -06:00
3.13
This commit is contained in:
35
7zip/UI/Far/OverwriteDialog.h
Executable file
35
7zip/UI/Far/OverwriteDialog.h
Executable file
@@ -0,0 +1,35 @@
|
||||
// OverwriteDialog.h
|
||||
|
||||
#pragma once
|
||||
|
||||
#ifndef OVERWRITEDIALOG_H
|
||||
#define OVERWRITEDIALOG_H
|
||||
|
||||
#include "Common/String.h"
|
||||
|
||||
namespace NOverwriteDialog {
|
||||
|
||||
struct CFileInfo
|
||||
{
|
||||
bool SizeIsDefined;
|
||||
UINT64 Size;
|
||||
FILETIME Time;
|
||||
CSysString Name;
|
||||
};
|
||||
namespace NResult
|
||||
{
|
||||
enum EEnum
|
||||
{
|
||||
kYes,
|
||||
kYesToAll,
|
||||
kNo,
|
||||
kNoToAll,
|
||||
kAutoRename,
|
||||
kCancel,
|
||||
};
|
||||
}
|
||||
NResult::EEnum Execute(const CFileInfo &anOldFileInfo, const CFileInfo &aNewFileInfo);
|
||||
|
||||
}
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user