mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-07 01:15:00 -06:00
34 lines
448 B
C++
Executable File
34 lines
448 B
C++
Executable File
// OverwriteDialog.h
|
|
|
|
#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
|