comparison libvo/font_load.h @ 7165:379852905f31

2*100l, extern fv() {} is nonsense, you have to decide if it is extern or local but never both!
author arpi
date Fri, 30 Aug 2002 13:53:27 +0000
parents b9ce54c7f30f
children 81dbd28ef7c0
comparison
equal deleted inserted replaced
7164:6175f7d18f8c 7165:379852905f31
89 #else 89 #else
90 90
91 raw_file* load_raw(char *name,int verbose); 91 raw_file* load_raw(char *name,int verbose);
92 font_desc_t* read_font_desc(char* fname,float factor,int verbose); 92 font_desc_t* read_font_desc(char* fname,float factor,int verbose);
93 93
94 extern void inline render_one_glyph(font_desc_t *desc, int c) 94 static void inline render_one_glyph(font_desc_t *desc, int c) {}
95 { 95 static int inline kerning(font_desc_t *desc, int prevc, int c) { return 0; }
96 } 96 static void inline load_font(int width, int height){}
97
98 extern int inline kerning(font_desc_t *desc, int prevc, int c)
99 {
100 return 0;
101 }
102
103 extern void inline load_font(int width, int height)
104 {
105 }
106 97
107 #endif 98 #endif
108 99
109 #endif /* ! __MPLAYER_FONT_LOAD_H */ 100 #endif /* ! __MPLAYER_FONT_LOAD_H */