From 5531d33220ffc3e5da2007cd1854e70f8f12beac Mon Sep 17 00:00:00 2001 From: arpi Date: Fri, 30 Aug 2002 13:53:27 +0000 Subject: 2*100l, extern fv() {} is nonsense, you have to decide if it is extern or local but never both! git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@7166 b3059339-0415-0410-9bf9-f77b7e298cf2 --- libvo/font_load.h | 15 +++------------ 1 file changed, 3 insertions(+), 12 deletions(-) diff --git a/libvo/font_load.h b/libvo/font_load.h index 3c1876ada7..e4d4e83d2c 100644 --- a/libvo/font_load.h +++ b/libvo/font_load.h @@ -91,18 +91,9 @@ void load_font(int width, int height); 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 -- cgit v1.2.3