X-Git-Url: https://git.videolan.org/gitweb.cgi/vlc.git/?p=vlc.git;p=vlc.git;a=blobdiff_plain;f=include%2Fvlc_modules.h;h=bdcf345e9d7675af22c0f1dcd9760685efd2fd7c;hp=9b4caa94e1d53e96ef97011ceb87caeb49a62e72;hb=381a5cb481e287f81290de6b3ff0fbaddb1af1bd;hpb=2cb0f8937bdf6e15aafbc5689f7a1272d5fdfb3f diff --git a/include/vlc_modules.h b/include/vlc_modules.h index 9b4caa94e1..bdcf345e9d 100644 --- a/include/vlc_modules.h +++ b/include/vlc_modules.h @@ -108,5 +108,5 @@ struct module_t VLC_EXPORT( module_t *, __module_Need, ( vlc_object_t *, const char *, const char *, vlc_bool_t ) ); #define module_Unneed(a,b) __module_Unneed(VLC_OBJECT(a),b) VLC_EXPORT( void, __module_Unneed, ( vlc_object_t *, module_t * ) ); -#define module_Exist(a,b) __module_Exists(VLC_OBJECT(a),b) +#define module_Exists(a,b) __module_Exists(VLC_OBJECT(a),b) VLC_EXPORT( vlc_bool_t, __module_Exists, ( vlc_object_t *, const char * ) );