mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-06 07:14:55 -06:00
65 lines
1.1 KiB
C++
Executable File
65 lines
1.1 KiB
C++
Executable File
// UpdateAction.cpp
|
|
|
|
#include "StdAfx.h"
|
|
|
|
#include "UpdateAction.h"
|
|
|
|
namespace NUpdateArchive {
|
|
|
|
const CActionSet k_ActionSet_Add =
|
|
{{
|
|
NPairAction::kCopy,
|
|
NPairAction::kCopy,
|
|
NPairAction::kCompress,
|
|
NPairAction::kCompress,
|
|
NPairAction::kCompress,
|
|
NPairAction::kCompress,
|
|
NPairAction::kCompress
|
|
}};
|
|
|
|
const CActionSet k_ActionSet_Update =
|
|
{{
|
|
NPairAction::kCopy,
|
|
NPairAction::kCopy,
|
|
NPairAction::kCompress,
|
|
NPairAction::kCopy,
|
|
NPairAction::kCompress,
|
|
NPairAction::kCopy,
|
|
NPairAction::kCompress
|
|
}};
|
|
|
|
const CActionSet k_ActionSet_Fresh =
|
|
{{
|
|
NPairAction::kCopy,
|
|
NPairAction::kCopy,
|
|
NPairAction::kIgnore,
|
|
NPairAction::kCopy,
|
|
NPairAction::kCompress,
|
|
NPairAction::kCopy,
|
|
NPairAction::kCompress
|
|
}};
|
|
|
|
const CActionSet k_ActionSet_Sync =
|
|
{{
|
|
NPairAction::kCopy,
|
|
NPairAction::kIgnore,
|
|
NPairAction::kCompress,
|
|
NPairAction::kCopy,
|
|
NPairAction::kCompress,
|
|
NPairAction::kCopy,
|
|
NPairAction::kCompress,
|
|
}};
|
|
|
|
const CActionSet k_ActionSet_Delete =
|
|
{{
|
|
NPairAction::kCopy,
|
|
NPairAction::kIgnore,
|
|
NPairAction::kIgnore,
|
|
NPairAction::kIgnore,
|
|
NPairAction::kIgnore,
|
|
NPairAction::kIgnore,
|
|
NPairAction::kIgnore
|
|
}};
|
|
|
|
}
|