| 1 | /* |
| 2 | * Copyright 2020 Google LLC |
| 3 | * |
| 4 | * Use of this source code is governed by a BSD-style |
| 5 | * license that can be found in the LICENSE file or at |
| 6 | * https://developers.google.com/open-source/licenses/bsd |
| 7 | */ |
| 8 | |
| 9 | #ifndef REFTABLE_CONSTANTS_H |
| 10 | #define REFTABLE_CONSTANTS_H |
| 11 | |
| 12 | #define REFTABLE_BLOCK_TYPE_LOG 'g' |
| 13 | #define REFTABLE_BLOCK_TYPE_INDEX 'i' |
| 14 | #define REFTABLE_BLOCK_TYPE_REF 'r' |
| 15 | #define REFTABLE_BLOCK_TYPE_OBJ 'o' |
| 16 | #define REFTABLE_BLOCK_TYPE_ANY 0 |
| 17 | |
| 18 | #endif /* REFTABLE_CONSTANTS_H */ |