1 /****************************************************************************
2  *
3  * woff2tags.h
4  *
5  *   WOFFF2 Font table tags (specification).
6  *
7  * Copyright (C) 2019-2020 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 
30   FT_LOCAL( FT_ULong )
31   woff2_known_tags( FT_Byte  index );
32 
33 
34 FT_END_HEADER
35 
36 #endif /* WOFF2TAGS_H */
37 
38 
39 /* END */
40