Commit f44ed771 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Cosmetic

parent e1c87080
...@@ -25,6 +25,8 @@ ...@@ -25,6 +25,8 @@
#error You are not libvlc or one of its plugins. You cannot include this file #error You are not libvlc or one of its plugins. You cannot include this file
#endif #endif
#if 1
/* FIXME: scheduled for privatization */
#define MODULE_SHORTCUT_MAX 50 #define MODULE_SHORTCUT_MAX 50
/* The module handle type. */ /* The module handle type. */
...@@ -46,8 +48,6 @@ typedef shl_t module_handle_t; ...@@ -46,8 +48,6 @@ typedef shl_t module_handle_t;
/** /**
* Module descriptor * Module descriptor
*/ */
#ifndef __PLUGIN__FIXME___
/* FIXME: scheduled for privatization */
struct module_t struct module_t
{ {
VLC_COMMON_MEMBERS VLC_COMMON_MEMBERS
......
...@@ -109,15 +109,10 @@ struct module_t ...@@ -109,15 +109,10 @@ struct module_t
const char *psz_longname; /**< Module descriptive name */ const char *psz_longname; /**< Module descriptive name */
const char *psz_help; /**< Long help string for "special" modules */ const char *psz_help; /**< Long help string for "special" modules */
/*
* Variables set by the module to tell us what it can do
*/
const char *psz_program; /**< Program name which will activate the module */
/** Shortcuts to the module */ /** Shortcuts to the module */
const char *pp_shortcuts[ MODULE_SHORTCUT_MAX ]; const char *pp_shortcuts[ MODULE_SHORTCUT_MAX ];
const char *psz_capability; /**< Capability */ char *psz_capability; /**< Capability */
int i_score; /**< Score for the capability */ int i_score; /**< Score for the capability */
uint32_t i_cpu; /**< Required CPU capabilities */ uint32_t i_cpu; /**< Required CPU capabilities */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment