]> git.sesse.net Git - vlc/commitdiff
Remove dead functions
authorRémi Denis-Courmont <rdenis@simphalempin.com>
Sun, 12 Oct 2008 16:12:09 +0000 (19:12 +0300)
committerRémi Denis-Courmont <rdenis@simphalempin.com>
Sun, 12 Oct 2008 16:12:09 +0000 (19:12 +0300)
include/vlc_messages.h
src/libvlccore.sym
src/misc/messages.c

index 92b57d4e6595e9920df8051f90b708fd03ccdf51..b755b89febfad804fc75ed6c42b12ec14bae34f4 100644 (file)
@@ -86,10 +86,6 @@ struct msg_subscription_t
 VLC_EXPORT( void, __msg_Generic, ( vlc_object_t *, int, const char *, const char *, ... ) LIBVLC_FORMAT( 4, 5 ) );
 VLC_EXPORT( void, __msg_GenericVa, ( vlc_object_t *, int, const char *, const char *, va_list args ) );
 #define msg_GenericVa(a, b, c, d, e) __msg_GenericVa(VLC_OBJECT(a), b, c, d, e)
-VLC_EXPORT( void, __msg_Info,    ( vlc_object_t *, const char *, ... ) LIBVLC_FORMAT( 2, 3 ) );
-VLC_EXPORT( void, __msg_Err,     ( vlc_object_t *, const char *, ... ) LIBVLC_FORMAT( 2, 3 ) );
-VLC_EXPORT( void, __msg_Warn,    ( vlc_object_t *, const char *, ... ) LIBVLC_FORMAT( 2, 3 ) );
-VLC_EXPORT( void, __msg_Dbg,    ( vlc_object_t *, const char *, ... ) LIBVLC_FORMAT( 2, 3 ) );
 
 #define msg_Info( p_this, ... ) \
       __msg_Generic( VLC_OBJECT(p_this), VLC_MSG_INFO, \
index 414458200933a3f4f5f2692beb43f0336d72bfbe..2da80b6ba7147f948a7055705daabcab084adbeb 100644 (file)
@@ -219,16 +219,12 @@ __module_need
 module_provides
 module_release
 __module_unneed
-__msg_Dbg
 __msg_DisableObjectPrinting
 __msg_EnableObjectPrinting
-__msg_Err
 __msg_Generic
 __msg_GenericVa
-__msg_Info
 __msg_Subscribe
 __msg_Unsubscribe
-__msg_Warn
 msleep
 mstrtime
 mwait
index cc1fd3c2d2b5d6dea1d6a1a2aecc9eafe58102a9..f3306f287b120a0683afe627072fd12245513916 100644 (file)
@@ -254,35 +254,6 @@ void __msg_GenericVa( vlc_object_t *p_this, int i_type, const char *psz_module,
     QueueMsg( p_this, i_type, psz_module, psz_format, args );
 }
 
-/* Generic functions used when variadic macros are not available. */
-#define DECLARE_MSG_FN( FN_NAME, FN_TYPE ) \
-    void FN_NAME( vlc_object_t *p_this, const char *psz_format, ... ) \
-    { \
-        va_list args; \
-        va_start( args, psz_format ); \
-        QueueMsg( p_this, FN_TYPE, "unknown", psz_format, args ); \
-        va_end( args ); \
-    } \
-    struct _
-/**
- * Output an informational message.
- * \note Do not use this for debug messages
- * \see input_AddInfo
- */
-DECLARE_MSG_FN( __msg_Info, VLC_MSG_INFO );
-/**
- * Output an error message.
- */
-DECLARE_MSG_FN( __msg_Err,  VLC_MSG_ERR );
-/**
- * Output a waring message
- */
-DECLARE_MSG_FN( __msg_Warn, VLC_MSG_WARN );
-/**
- * Output a debug message
- */
-DECLARE_MSG_FN( __msg_Dbg,  VLC_MSG_DBG );
-
 /**
  * Add a message to a queue
  *