Mercurial > mplayer.hg
changeset 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 | 6175f7d18f8c |
children | 814ad5474529 |
files | libvo/font_load.h |
diffstat | 1 files changed, 3 insertions(+), 12 deletions(-) [+] |
line wrap: on
line diff
--- a/libvo/font_load.h Fri Aug 30 13:34:08 2002 +0000 +++ b/libvo/font_load.h Fri Aug 30 13:53:27 2002 +0000 @@ -91,18 +91,9 @@ raw_file* load_raw(char *name,int verbose); font_desc_t* read_font_desc(char* fname,float factor,int verbose); -extern void inline render_one_glyph(font_desc_t *desc, int c) -{ -} - -extern int inline kerning(font_desc_t *desc, int prevc, int c) -{ - return 0; -} - -extern void inline load_font(int width, int height) -{ -} +static void inline render_one_glyph(font_desc_t *desc, int c) {} +static int inline kerning(font_desc_t *desc, int prevc, int c) { return 0; } +static void inline load_font(int width, int height){} #endif