]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/freetype.hh
Run `make grand-replace'.
[lilypond.git] / lily / include / freetype.hh
1 /*
2   freetype.hh -- declare Freetype global settings.
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 2004--2008 Han-Wen Nienhuys <hanwen@xs4all.nl>
7 */
8
9 #ifndef FREETYPE_HH
10 #define FREETYPE_HH
11
12 #include <ft2build.h>
13 #include FT_FREETYPE_H
14
15 #include "std-string.hh"
16
17 void init_freetype ();
18 extern FT_Library freetype2_library;
19
20 FT_Face open_ft_face (string str);
21
22 string freetype_error_string (int code);
23
24 #endif /* FREETYPE_HH */
25