This commit is contained in:
Igor Pavlov
2014-11-23 00:00:00 +00:00
committed by Kornel Lesiński
parent 83f8ddcc5b
commit f08f4dcc3c
1158 changed files with 76451 additions and 35082 deletions

View 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