]> git.sesse.net Git - vlc/blobdiff - include/vlc_objects.h
include/vlc_objects.h: Use the usual macro trick, to publish a function that take...
[vlc] / include / vlc_objects.h
index 5589f956f1b68260cef80f5e633cb0b7e6f6fe8d..5048fdb44c6ab5a7fa6e3b500cf0dfa2e42cf015 100644 (file)
@@ -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.