comparison libass/ass_fontconfig.h @ 25897:aaebaf255b23

Consistently give all libass multiple inclusion guards a LIBASS_ prefix.
author diego
date Tue, 29 Jan 2008 23:25:11 +0000
parents 3baf6a2283da
children 74055622161d
comparison
equal deleted inserted replaced
25896:5745272a5636 25897:aaebaf255b23
16 You should have received a copy of the GNU General Public License 16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software 17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA 18 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19 */ 19 */
20 20
21 #ifndef ASS_FONTCONFIG_H 21 #ifndef LIBASS_FONTCONFIG_H
22 #define ASS_FONTCONFIG_H 22 #define LIBASS_FONTCONFIG_H
23 23
24 #ifdef HAVE_FONTCONFIG 24 #ifdef HAVE_FONTCONFIG
25 #include <fontconfig/fontconfig.h> 25 #include <fontconfig/fontconfig.h>
26 #endif 26 #endif
27 27
29 29
30 fc_instance_t* fontconfig_init(ass_library_t* library, FT_Library ftlibrary, const char* family, const char* path); 30 fc_instance_t* fontconfig_init(ass_library_t* library, FT_Library ftlibrary, const char* family, const char* path);
31 char* fontconfig_select(fc_instance_t* priv, const char* family, unsigned bold, unsigned italic, int* index, uint32_t code); 31 char* fontconfig_select(fc_instance_t* priv, const char* family, unsigned bold, unsigned italic, int* index, uint32_t code);
32 void fontconfig_done(fc_instance_t* priv); 32 void fontconfig_done(fc_instance_t* priv);
33 33
34 #endif /* ASS_FONTCONFIG_H */ 34 #endif /* LIBASS_FONTCONFIG_H */