annotate libass/ass_fontconfig.h @ 19355:ba95c4fa0684

Reintroduce an ugly variant of the -gui/-nogui options.
author reimar
date Tue, 08 Aug 2006 14:13:51 +0000
parents 9e95ac641e77
children fa122b7c71c6
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
18937
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
1 #ifndef __ASS_FONTCONFIG_H__
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
2 #define __ASS_FONTCONFIG_H__
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
3
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
4 typedef struct fc_instance_s fc_instance_t;
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
5
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
6 fc_instance_t* fontconfig_init(const char* dir, const char* family, const char* path);
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
7 char* fontconfig_select(fc_instance_t* priv, const char* family, unsigned bold, unsigned italic, int* index);
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
8 void fontconfig_done(fc_instance_t* priv);
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
9
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
10 #endif
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
11