view libass/ass_fontconfig.h @ 19269:0e7dbcd443f2

Move the section describing the per movie config files up, so it doesn't get seperated from the rest of the config file doc by the config file example
author attila
date Mon, 31 Jul 2006 04:18:25 +0000
parents 9e95ac641e77
children fa122b7c71c6
line wrap: on
line source

#ifndef __ASS_FONTCONFIG_H__
#define __ASS_FONTCONFIG_H__

typedef struct fc_instance_s fc_instance_t;

fc_instance_t* fontconfig_init(const char* dir, const char* family, const char* path);
char* fontconfig_select(fc_instance_t* priv, const char* family, unsigned bold, unsigned italic, int* index);
void fontconfig_done(fc_instance_t* priv);

#endif