You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
65 lines
1.2 KiB
65 lines
1.2 KiB
4 months ago
|
// 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
|
||
|
}};
|
||
|
|
||
|
}
|