X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=include%2Fvlc_objects.h;h=5048fdb44c6ab5a7fa6e3b500cf0dfa2e42cf015;hb=c76ca6667fe719f8a7757f9b9d61fcd3cab64657;hp=5589f956f1b68260cef80f5e633cb0b7e6f6fe8d;hpb=949dac11608bb2ab375d29069a64cc824ba33c1f;p=vlc diff --git a/include/vlc_objects.h b/include/vlc_objects.h index 5589f956f1..5048fdb44c 100644 --- a/include/vlc_objects.h +++ b/include/vlc_objects.h @@ -178,7 +178,9 @@ VLC_EXPORT( vlc_bool_t, __vlc_object_alive, ( vlc_object_t * ) ); #define vlc_object_alive(a) \ __vlc_object_alive( VLC_OBJECT(a) ) -int vlc_object_waitpipe( vlc_object_t *obj ); +VLC_EXPORT( int, __vlc_object_waitpipe, ( vlc_object_t *obj )); +#define vlc_object_waitpipe(a) \ + __vlc_object_waitpipe( VLC_OBJECT(a) ) /* NOTE: this function is a *temporary* convenience. * See the vlc_object_alive() documentation for a better alternative.