blob: 58e7572085af47a3f17d03f9e70d50ee2591f621 [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
Gilad Arnoldcf175a02014-07-10 16:48:47 -07005#ifndef UPDATE_ENGINE_PAYLOAD_CONSTANTS_H_
6#define UPDATE_ENGINE_PAYLOAD_CONSTANTS_H_
Alex Deymo161c4a12014-05-16 15:56:21 -07007
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
Gilad Arnoldcf175a02014-07-10 16:48:47 -070021#endif // UPDATE_ENGINE_PAYLOAD_CONSTANTS_H_