X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Flibvlc.h;h=94e2a6919b031b7d243746f6ac3365361f36db7a;hb=31a163942d6682ae31679e6e2be898f9314b2cc0;hp=c8eed26a91553c846bd93f9246ff9eb439c2234e;hpb=497b59e4fc525cca1fd422c0b5ece0672d4d8036;p=vlc diff --git a/src/libvlc.h b/src/libvlc.h index c8eed26a91..94e2a6919b 100644 --- a/src/libvlc.h +++ b/src/libvlc.h @@ -138,8 +138,10 @@ char *vlc_fix_readdir (const char *); * @return the created object, or NULL. */ extern void * -vlc_custom_create (vlc_object_t *p_this, size_t i_size, int i_type, - const char *psz_type); +__vlc_custom_create (vlc_object_t *p_this, size_t i_size, int i_type, + const char *psz_type); +#define vlc_custom_create(o, s, t, n) \ + __vlc_custom_create(VLC_OBJECT(o), s, t, n) /** * libvlc_global_data_t (global variable) @@ -233,8 +235,6 @@ typedef struct libvlc_priv_t msg_bank_t msg_bank; ///< The message bank int i_verbose; ///< info messages bool b_color; ///< color messages? - vlc_dictionary_t msg_enabled_objects; ///< Enabled objects - bool msg_all_objects_enabled; ///< Should we print all objects? /* Timer stats */ vlc_mutex_t timer_lock; ///< Lock to protect timers