diff options
author | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2006-11-25 17:15:02 +0000 |
---|---|---|
committer | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2006-11-25 17:15:02 +0000 |
commit | c7506e39de0a72680c0ee181fa6a5666a460764d (patch) | |
tree | 76be900f06bcc96a1ec50df8787af2f4b366de00 /lib/libXfont/include/X11/fonts/fontmod.h | |
parent | 3b886ee63fdb7ea8f170a5e212f7a28c81c7a5b3 (diff) |
import from X.Org 7.2RC1
Diffstat (limited to 'lib/libXfont/include/X11/fonts/fontmod.h')
-rw-r--r-- | lib/libXfont/include/X11/fonts/fontmod.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/lib/libXfont/include/X11/fonts/fontmod.h b/lib/libXfont/include/X11/fonts/fontmod.h new file mode 100644 index 000000000..42d277fd4 --- /dev/null +++ b/lib/libXfont/include/X11/fonts/fontmod.h @@ -0,0 +1,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_ */ |