Alex Deymo | 161c4a1 | 2014-05-16 15:56:21 -0700 | [diff] [blame] | 1 | // Copyright 2014 The Chromium OS Authors. All rights reserved. |
| 2 | // Use of this source code is governed by a BSD-style license that can be |
| 3 | // found in the LICENSE file. |
| 4 | |
| 5 | #ifndef CHROMEOS_PLATFORM_UPDATE_ENGINE_PAYLOAD_CONSTANTS_H_ |
| 6 | #define CHROMEOS_PLATFORM_UPDATE_ENGINE_PAYLOAD_CONSTANTS_H_ |
| 7 | |
| 8 | #include <base/basictypes.h> |
| 9 | |
| 10 | namespace chromeos_update_engine { |
| 11 | |
| 12 | extern const char kBspatchPath[]; |
| 13 | extern const char kDeltaMagic[]; |
| 14 | |
| 15 | // A block number denoting a hole on a sparse file. Used on Extents to refer to |
| 16 | // section of blocks not present on disk on a sparse file. |
| 17 | const uint64_t kSparseHole = kuint64max; |
| 18 | |
| 19 | }; // namespace chromeos_update_engine |
| 20 | |
| 21 | #endif // CHROMEOS_PLATFORM_UPDATE_ENGINE_PAYLOAD_CONSTANTS_H_ |