blob: 42d277fd4ec11abc8c0bc1f4c2e176ddceb34284 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/* $XFree86: xc/lib/font/include/fontmod.h,v 1.2 1998/07/25 06:57:09 dawes Exp $ */
#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_ */
|