X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Finput%2Fevent.h;h=31eea4d9133213f3622201ca80019bda0256904e;hb=c22b7e0ece66ea1d8a0df64076f783b765b4a371;hp=b6ed2bfc607af1652b0f7645278da43af2526bc5;hpb=8236d4c98f0e531a3be614b8dff14d1a60e05eec;p=vlc diff --git a/src/input/event.h b/src/input/event.h index b6ed2bfc60..31eea4d913 100644 --- a/src/input/event.h +++ b/src/input/event.h @@ -21,12 +21,8 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. *****************************************************************************/ -#if defined(__PLUGIN__) || defined(__BUILTIN__) || !defined(__LIBVLC__) -# error This header file can only be included from LibVLC. -#endif - -#ifndef _INPUT_EVENT_H -#define _INPUT_EVENT_H 1 +#ifndef LIBVLC_INPUT_EVENT_H +#define LIBVLC_INPUT_EVENT_H 1 #include @@ -35,7 +31,8 @@ *****************************************************************************/ void input_SendEventDead( input_thread_t *p_input ); void input_SendEventAbort( input_thread_t *p_input ); -void input_SendEventTimes( input_thread_t *p_input, double f_position, mtime_t i_time, mtime_t i_length ); +void input_SendEventPosition( input_thread_t *p_input, double f_position, mtime_t i_time ); +void input_SendEventLength( input_thread_t *p_input, mtime_t i_length ); void input_SendEventStatistics( input_thread_t *p_input ); void input_SendEventRate( input_thread_t *p_input, int i_rate ); void input_SendEventAudioDelay( input_thread_t *p_input, mtime_t i_delay ); @@ -51,6 +48,7 @@ void input_SendEventCache( input_thread_t *p_input, double f_level ); void input_SendEventMeta( input_thread_t *p_input ); void input_SendEventMetaInfo( input_thread_t *p_input ); void input_SendEventMetaName( input_thread_t *p_input, const char *psz_name ); +void input_SendEventMetaEpg( input_thread_t *p_input ); /***************************************************************************** * Event for es_out.c @@ -81,6 +79,4 @@ void input_SendEventAout( input_thread_t *p_input ); *****************************************************************************/ void input_SendEventBookmark( input_thread_t *p_input ); - #endif -