]> git.sesse.net Git - vlc/blobdiff - modules/control/dummy.c
vlc_plugin: fix non-LGPL plugins meta infos
[vlc] / modules / control / dummy.c
index c0bc3cd6ec29c6f276056c1db9e8d2299e9d91f6..9c93727a150fd0138648e152d2e83466be3e4871 100644 (file)
@@ -29,6 +29,7 @@
 # include "config.h"
 #endif
 
+#define VLC_MODULE_LICENSE VLC_LICENSE_GPL_2_PLUS
 #include <vlc_common.h>
 #include <vlc_plugin.h>
 #include <vlc_interface.h>
@@ -40,6 +41,7 @@
     "Enabling the quiet mode will not bring this command box but can also " \
     "be pretty annoying when you want to stop VLC and no video window is " \
     "open." )
+#include "intromsg.h"
 #endif
 
 static int Open( vlc_object_t * );
@@ -65,7 +67,7 @@ static int Open( vlc_object_t *p_this )
     bool b_quiet;
     b_quiet = var_InheritBool( p_intf, "dummy-quiet" );
     if( !b_quiet )
-        CONSOLE_INTRO_MSG;
+        intf_consoleIntroMsg(p_intf);
 #endif
 
     msg_Info( p_intf, "using the dummy interface module..." );