1
mirror of https://code.videolan.org/videolan/vlc synced 2024-10-03 01:31:53 +02:00

Remove buggy and unused function

This commit is contained in:
Rémi Denis-Courmont 2009-01-10 19:20:28 +02:00
parent 7ab4f13d30
commit c4877da890

View File

@ -66,12 +66,6 @@ VLC_EXPORT( services_discovery_t *, services_discovery_Create, ( vlc_object_t *
VLC_EXPORT( bool, services_discovery_Start, ( services_discovery_t * p_this ) );
VLC_EXPORT( void, services_discovery_Stop, ( services_discovery_t * p_this ) );
static inline void services_discovery_CreateAndStart( vlc_object_t * p_super, const char * psz_service_name )
{
services_discovery_t * sd = services_discovery_Create( p_super, psz_service_name );
services_discovery_Start( sd );
}
static inline void services_discovery_StopAndRelease( services_discovery_t * p_this )
{
services_discovery_Stop( p_this );