Commit 8f0d6292 authored by Laurent Aimar's avatar Laurent Aimar

Made vout_ShowText* private to the core.

parent e875fef5
......@@ -624,11 +624,6 @@ VLC_EXPORT( int, osd_Icon, ( vlc_object_t *, spu_t *, int, int, int, int, int, s
/**********************************************************************
* Vout text and widget overlays
**********************************************************************/
VLC_EXPORT( int, vout_ShowTextRelative, ( vout_thread_t *, int, char *, const text_style_t *, int, int, int, mtime_t ) );
VLC_EXPORT( int, vout_ShowTextAbsolute, ( vout_thread_t *, int, const char *, const text_style_t *, int, int, int, mtime_t, mtime_t ) );
VLC_EXPORT( int, vout_OSDEpg, ( vout_thread_t *, input_item_t * ) );
/**
......
......@@ -621,8 +621,6 @@ vout_OSDMessage
vout_OSDEpg
vout_OSDSlider
vout_Request
vout_ShowTextAbsolute
vout_ShowTextRelative
vout_window_New
vout_window_Control
vout_window_Delete
......
......@@ -169,5 +169,10 @@ void vout_DisplayWrapper(vout_thread_t *, picture_t *);
/* */
int spu_ProcessMouse(spu_t *, const vlc_mouse_t *, const video_format_t *);
/* */
int vout_ShowTextRelative( vout_thread_t *, int, char *, const text_style_t *, int, int, int, mtime_t );
int vout_ShowTextAbsolute( vout_thread_t *, int, const char *, const text_style_t *, int, int, int, mtime_t, mtime_t );
#endif
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment