|
|
|
@ -43,6 +43,11 @@ |
|
|
|
static int Open( vlc_object_t *p_this ); |
|
|
|
static void Close( vlc_object_t *p_this ); |
|
|
|
|
|
|
|
static void AutoRun(libvlc_int_t *libvlc) |
|
|
|
{ |
|
|
|
intf_Create(libvlc, MODULE_STRING); |
|
|
|
} |
|
|
|
|
|
|
|
/*****************************************************************************
|
|
|
|
* Module descriptor |
|
|
|
*****************************************************************************/ |
|
|
|
@ -54,6 +59,10 @@ vlc_module_begin() |
|
|
|
set_capability( "interface", 0 ) |
|
|
|
set_callbacks( Open, Close ) |
|
|
|
add_shortcut( "globalhotkeys" ) |
|
|
|
|
|
|
|
add_submodule() |
|
|
|
set_capability("autorun", 10) |
|
|
|
set_callback(AutoRun) |
|
|
|
vlc_module_end() |
|
|
|
|
|
|
|
typedef struct |
|
|
|
|