blob: cec8e1e18e8d95a5940241fab56ba6212e0c9dee (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/* $XFree86$ */
#ifndef _FONTMOD_H_
#define _FONTMOD_H_
typedef void (*InitFont)(void);
typedef struct {
InitFont initFunc;
char * name;
pointer module;
} FontModule;
extern FontModule *FontModuleList;
#endif /* _FONTMOD_H_ */
|