/* Copyright 2014 Google Inc. All Rights Reserved. Distributed under MIT license. See file LICENSE for detail or copy at https://opensource.org/licenses/MIT */ /* Font table tags */ #ifndef WOFF2_TABLE_TAGS_H_ #define WOFF2_TABLE_TAGS_H_ #include <inttypes.h> namespace woff2 { // Tags of popular tables. static const uint32_t kGlyfTableTag = …; static const uint32_t kHeadTableTag = …; static const uint32_t kLocaTableTag = …; static const uint32_t kDsigTableTag = …; static const uint32_t kCffTableTag = …; static const uint32_t kHmtxTableTag = …; static const uint32_t kHheaTableTag = …; static const uint32_t kMaxpTableTag = …; extern const uint32_t kKnownTags[]; } // namespace woff2 #endif // WOFF2_TABLE_TAGS_H_