mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-18 14:11:54 -06:00
9.17
This commit is contained in:
committed by
Kornel Lesiński
parent
044e4bb741
commit
2eb60a0598
@@ -4,6 +4,7 @@
|
||||
#define OVERWRITEDIALOG_H
|
||||
|
||||
#include "Common/MyString.h"
|
||||
#include "Common/Types.h"
|
||||
|
||||
namespace NOverwriteDialog {
|
||||
|
||||
@@ -11,10 +12,11 @@ struct CFileInfo
|
||||
{
|
||||
bool SizeIsDefined;
|
||||
bool TimeIsDefined;
|
||||
UINT64 Size;
|
||||
UInt64 Size;
|
||||
FILETIME Time;
|
||||
CSysString Name;
|
||||
UString Name;
|
||||
};
|
||||
|
||||
namespace NResult
|
||||
{
|
||||
enum EEnum
|
||||
@@ -24,10 +26,11 @@ namespace NResult
|
||||
kNo,
|
||||
kNoToAll,
|
||||
kAutoRename,
|
||||
kCancel,
|
||||
kCancel
|
||||
};
|
||||
}
|
||||
NResult::EEnum Execute(const CFileInfo &anOldFileInfo, const CFileInfo &aNewFileInfo);
|
||||
|
||||
NResult::EEnum Execute(const CFileInfo &oldFileInfo, const CFileInfo &newFileInfo);
|
||||
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user