Commit f2453c92 authored by Clément Stenac's avatar Clément Stenac

Don't run growl and msn plugins

parent c5dde660
...@@ -38,7 +38,6 @@ ...@@ -38,7 +38,6 @@
*****************************************************************************/ *****************************************************************************/
static int Open ( vlc_object_t * ); static int Open ( vlc_object_t * );
static void Close ( vlc_object_t * ); static void Close ( vlc_object_t * );
static void Run ( intf_thread_t * );
static int ItemChange( vlc_object_t *, const char *, static int ItemChange( vlc_object_t *, const char *,
vlc_value_t, vlc_value_t, void * ); vlc_value_t, vlc_value_t, void * );
...@@ -96,8 +95,6 @@ static int Open( vlc_object_t *p_this ) ...@@ -96,8 +95,6 @@ static int Open( vlc_object_t *p_this )
pl_Release( p_intf ); pl_Release( p_intf );
RegisterToGrowl( p_this ); RegisterToGrowl( p_this );
p_intf->pf_run = Run;
return VLC_SUCCESS; return VLC_SUCCESS;
} }
...@@ -111,14 +108,6 @@ static void Close( vlc_object_t *p_this ) ...@@ -111,14 +108,6 @@ static void Close( vlc_object_t *p_this )
pl_Release( p_this ); pl_Release( p_this );
} }
/*****************************************************************************
* Run
*****************************************************************************/
static void Run( intf_thread_t *p_intf )
{
msleep( INTF_IDLE_SLEEP );
}
/***************************************************************************** /*****************************************************************************
* ItemChange: Playlist item change callback * ItemChange: Playlist item change callback
*****************************************************************************/ *****************************************************************************/
......
...@@ -44,7 +44,6 @@ struct intf_sys_t ...@@ -44,7 +44,6 @@ struct intf_sys_t
*****************************************************************************/ *****************************************************************************/
static int Open ( vlc_object_t * ); static int Open ( vlc_object_t * );
static void Close ( vlc_object_t * ); static void Close ( vlc_object_t * );
static void Run ( intf_thread_t * );
static int ItemChange( vlc_object_t *, const char *, static int ItemChange( vlc_object_t *, const char *,
vlc_value_t, vlc_value_t, void * ); vlc_value_t, vlc_value_t, void * );
...@@ -101,8 +100,6 @@ static int Open( vlc_object_t *p_this ) ...@@ -101,8 +100,6 @@ static int Open( vlc_object_t *p_this )
var_AddCallback( p_playlist, "playlist-current", ItemChange, p_intf ); var_AddCallback( p_playlist, "playlist-current", ItemChange, p_intf );
pl_Release( p_intf ); pl_Release( p_intf );
p_intf->pf_run = Run;
return VLC_SUCCESS; return VLC_SUCCESS;
} }
...@@ -127,14 +124,6 @@ static void Close( vlc_object_t *p_this ) ...@@ -127,14 +124,6 @@ static void Close( vlc_object_t *p_this )
free( p_intf->p_sys ); free( p_intf->p_sys );
} }
/*****************************************************************************
* Run
*****************************************************************************/
static void Run( intf_thread_t *p_intf )
{
msleep( INTF_IDLE_SLEEP );
}
/***************************************************************************** /*****************************************************************************
* ItemChange: Playlist item change callback * ItemChange: Playlist item change callback
*****************************************************************************/ *****************************************************************************/
......
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