annotate libass/ass_fontconfig.h @ 19493:aa58338824f8
Remove backup files from the win32 subdir as well.
author |
diego |
date |
Tue, 22 Aug 2006 23:04:48 +0000 |
parents |
9e95ac641e77 |
children |
fa122b7c71c6 |
rev |
line source |
18937
|
1 #ifndef __ASS_FONTCONFIG_H__
|
|
2 #define __ASS_FONTCONFIG_H__
|
|
3
|
|
4 typedef struct fc_instance_s fc_instance_t;
|
|
5
|
|
6 fc_instance_t* fontconfig_init(const char* dir, const char* family, const char* path);
|
|
7 char* fontconfig_select(fc_instance_t* priv, const char* family, unsigned bold, unsigned italic, int* index);
|
|
8 void fontconfig_done(fc_instance_t* priv);
|
|
9
|
|
10 #endif
|
|
11
|