diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/input/input_test.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/input/input_test.c b/src/input/input_test.c index 6905a7126..d00486145 100644 --- a/src/input/input_test.c +++ b/src/input/input_test.c @@ -755,12 +755,16 @@ static void *init_plugin (xine_t *xine, void *data) { return this; } +static input_info_t input_info_test = { + 110 /* priority */ +}; + /* * exported plugin catalog entry */ const plugin_info_t xine_plugin_info[] EXPORTED = { /* type, API, "name", version, special_info, init_function */ - { PLUGIN_INPUT | PLUGIN_MUST_PRELOAD, 18, "test", XINE_VERSION_CODE, NULL, init_plugin }, + { PLUGIN_INPUT | PLUGIN_MUST_PRELOAD, 18, "TEST", XINE_VERSION_CODE, &input_info_test, init_plugin }, { PLUGIN_NONE, 0, "", 0, NULL, NULL } }; |