1 | /**************************************************************************** |
---|---|
2 | * |
3 | * woff2tags.h |
4 | * |
5 | * WOFF2 Font table tags (specification). |
6 | * |
7 | * Copyright (C) 2019-2022 by |
8 | * Nikhil Ramakrishnan, David Turner, Robert Wilhelm, and Werner Lemberg. |
9 | * |
10 | * This file is part of the FreeType project, and may only be used, |
11 | * modified, and distributed under the terms of the FreeType project |
12 | * license, LICENSE.TXT. By continuing to use, modify, or distribute |
13 | * this file you indicate that you have read the license and |
14 | * understand and accept it fully. |
15 | * |
16 | */ |
17 | |
18 | |
19 | #ifndef WOFF2TAGS_H |
20 | #define WOFF2TAGS_H |
21 | |
22 | |
23 | #include <freetype/internal/ftobjs.h> |
24 | #include <freetype/internal/compiler-macros.h> |
25 | |
26 | |
27 | FT_BEGIN_HEADER |
28 | |
29 | #ifdef FT_CONFIG_OPTION_USE_BROTLI |
30 | |
31 | FT_LOCAL( FT_Tag ) |
32 | woff2_known_tags( FT_Byte index ); |
33 | |
34 | #endif |
35 | |
36 | FT_END_HEADER |
37 | |
38 | #endif /* WOFF2TAGS_H */ |
39 | |
40 | |
41 | /* END */ |
42 |