Make utf8_get_char non-static.

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@18940 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
eugeni 2006-07-07 18:04:56 +00:00
parent 512eb68dc1
commit 93647f42c5
2 changed files with 3 additions and 1 deletions

View File

@ -140,7 +140,7 @@ inline static void vo_draw_text_from_buffer(mp_osd_obj_t* obj,void (*draw_alpha)
}
}
static unsigned utf8_get_char(char **str) {
unsigned utf8_get_char(char **str) {
uint8_t *strp = (uint8_t *)*str;
unsigned c = *strp++;
unsigned mask = 0x80;

View File

@ -121,5 +121,7 @@ void free_osd_list(void);
extern int vo_osd_changed_flag;
unsigned utf8_get_char(char **str);
#endif
#endif