blob: 4a4ec6f7c72555fef394b72340f6e0ca967ca124 [file] [log] [blame]
Alex Deymo161c4a12014-05-16 15:56:21 -07001// 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
10namespace chromeos_update_engine {
11
12extern const char kBspatchPath[];
13extern 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.
17const uint64_t kSparseHole = kuint64max;
18
19}; // namespace chromeos_update_engine
20
21#endif // CHROMEOS_PLATFORM_UPDATE_ENGINE_PAYLOAD_CONSTANTS_H_