Commit c6a41b08 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

VLM: remove leading underscores

parent 8e2f8915
...@@ -184,8 +184,8 @@ struct vlm_message_t ...@@ -184,8 +184,8 @@ struct vlm_message_t
extern "C" { extern "C" {
#endif #endif
#define vlm_New( a ) __vlm_New( VLC_OBJECT(a) ) VLC_EXPORT( vlm_t *, vlm_New, ( vlc_object_t * ) );
VLC_EXPORT( vlm_t *, __vlm_New, ( vlc_object_t * ) ); #define vlm_New( a ) vlm_New( VLC_OBJECT(a) )
VLC_EXPORT( void, vlm_Delete, ( vlm_t * ) ); VLC_EXPORT( void, vlm_Delete, ( vlm_t * ) );
VLC_EXPORT( int, vlm_ExecuteCommand, ( vlm_t *, const char *, vlm_message_t ** ) ); VLC_EXPORT( int, vlm_ExecuteCommand, ( vlm_t *, const char *, vlm_message_t ** ) );
VLC_EXPORT( int, vlm_Control, ( vlm_t *p_vlm, int i_query, ... ) ); VLC_EXPORT( int, vlm_Control, ( vlm_t *p_vlm, int i_query, ... ) );
......
...@@ -113,12 +113,13 @@ static int InputEvent( vlc_object_t *p_this, char const *psz_cmd, ...@@ -113,12 +113,13 @@ static int InputEvent( vlc_object_t *p_this, char const *psz_cmd,
return VLC_SUCCESS; return VLC_SUCCESS;
} }
static vlc_mutex_t vlm_mutex = VLC_STATIC_MUTEX;
#undef vlm_New
/***************************************************************************** /*****************************************************************************
* vlm_New: * vlm_New:
*****************************************************************************/ *****************************************************************************/
static vlc_mutex_t vlm_mutex = VLC_STATIC_MUTEX; vlm_t *vlm_New ( vlc_object_t *p_this )
vlm_t *__vlm_New ( vlc_object_t *p_this )
{ {
vlm_t *p_vlm = NULL, **pp_vlm = &(libvlc_priv (p_this->p_libvlc)->p_vlm); vlm_t *p_vlm = NULL, **pp_vlm = &(libvlc_priv (p_this->p_libvlc)->p_vlm);
char *psz_vlmconf; char *psz_vlmconf;
......
...@@ -594,7 +594,7 @@ vlm_MessageAdd ...@@ -594,7 +594,7 @@ vlm_MessageAdd
vlm_MessageDelete vlm_MessageDelete
vlm_MessageNew vlm_MessageNew
vlm_MessageSimpleNew vlm_MessageSimpleNew
__vlm_New vlm_New
__vout_AllocatePicture __vout_AllocatePicture
vout_ChromaCmp vout_ChromaCmp
vout_Close vout_Close
......
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