X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=modules%2Fcontrol%2Fdummy.c;h=9c93727a150fd0138648e152d2e83466be3e4871;hb=56220f86120b3d7b7d8c7b2957befede19f669b6;hp=c0bc3cd6ec29c6f276056c1db9e8d2299e9d91f6;hpb=3c6db86cf6fd44aeaeca523559e2221f8c75d3a7;p=vlc diff --git a/modules/control/dummy.c b/modules/control/dummy.c index c0bc3cd6ec..9c93727a15 100644 --- a/modules/control/dummy.c +++ b/modules/control/dummy.c @@ -29,6 +29,7 @@ # include "config.h" #endif +#define VLC_MODULE_LICENSE VLC_LICENSE_GPL_2_PLUS #include #include #include @@ -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..." );