]> git.sesse.net Git - vlc/blob - include/vlc_modules.h
- Cleanup and fixes deprecated options:
[vlc] / include / vlc_modules.h
1 /*****************************************************************************
2  * modules.h : Module descriptor and load functions
3  *****************************************************************************
4  * Copyright (C) 2001 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Samuel Hocevar <sam@zoy.org>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22  *****************************************************************************/
23
24 #if !defined( __LIBVLC__ )
25   #error You are not libvlc or one of its plugins. You cannot include this file
26 #endif
27
28 #define MODULE_SHORTCUT_MAX 50
29
30 /* The module handle type. */
31 #if defined(HAVE_DL_DYLD)
32 #   if defined (HAVE_MACH_O_DYLD_H)
33 #       include <mach-o/dyld.h>
34 #   endif
35 typedef NSModule module_handle_t;
36 #elif defined(HAVE_IMAGE_H)
37 typedef int module_handle_t;
38 #elif defined(WIN32) || defined(UNDER_CE)
39 typedef void * module_handle_t;
40 #elif defined(HAVE_DL_DLOPEN)
41 typedef void * module_handle_t;
42 #elif defined(HAVE_DL_SHL_LOAD)
43 typedef shl_t module_handle_t;
44 #endif
45
46 /**
47  * Module descriptor
48  */
49 #ifndef __PLUGIN__
50 /* FIXME: scheduled for privatization */
51 struct module_t
52 {
53     VLC_COMMON_MEMBERS
54
55     /*
56      * Variables set by the module to identify itself
57      */
58     const char *psz_shortname;                              /**< Module name */
59     const char *psz_longname;                   /**< Module descriptive name */
60     const char *psz_help;        /**< Long help string for "special" modules */
61
62     /*
63      * Variables set by the module to tell us what it can do
64      */
65     const char *psz_program; /**< Program name which will activate the module */
66
67     /** Shortcuts to the module */
68     const char *pp_shortcuts[ MODULE_SHORTCUT_MAX ];
69
70     char    *psz_capability;                                 /**< Capability */
71     int      i_score;                          /**< Score for the capability */
72     uint32_t i_cpu;                           /**< Required CPU capabilities */
73
74     vlc_bool_t b_unloadable;                        /**< Can we be dlclosed? */
75     vlc_bool_t b_reentrant;                           /**< Are we reentrant? */
76     vlc_bool_t b_submodule;                        /**< Is this a submodule? */
77
78     /* Callbacks */
79     int  ( * pf_activate )   ( vlc_object_t * );
80     void ( * pf_deactivate ) ( vlc_object_t * );
81
82     /*
83      * Variables set by the module to store its config options
84      */
85     module_config_t *p_config;             /* Module configuration structure */
86     size_t           confsize;            /* Number of module_config_t items */
87     unsigned int     i_config_items;        /* number of configuration items */
88     unsigned int     i_bool_items;            /* number of bool config items */
89
90     /*
91      * Variables used internally by the module manager
92      */
93     /* Plugin-specific stuff */
94     module_handle_t     handle;                             /* Unique handle */
95     char *              psz_filename;                     /* Module filename */
96
97     vlc_bool_t          b_builtin;  /* Set to true if the module is built in */
98     vlc_bool_t          b_loaded;        /* Set to true if the dll is loaded */
99 };
100 #endif
101
102 /*****************************************************************************
103  * Exported functions.
104  *****************************************************************************/
105 #define module_Need(a,b,c,d) __module_Need(VLC_OBJECT(a),b,c,d)
106 VLC_EXPORT( module_t *, __module_Need, ( vlc_object_t *, const char *, const char *, vlc_bool_t ) );
107 #define module_Unneed(a,b) __module_Unneed(VLC_OBJECT(a),b)
108 VLC_EXPORT( void, __module_Unneed, ( vlc_object_t *, module_t * ) );
109 #define module_Exists(a,b) __module_Exists(VLC_OBJECT(a),b)
110 VLC_EXPORT( vlc_bool_t,  __module_Exists, ( vlc_object_t *, const char * ) );
111
112 VLC_EXPORT( module_t *, vlc_module_create, ( vlc_object_t * ) );
113 VLC_EXPORT( module_t *, vlc_submodule_create, ( module_t * ) );
114 VLC_EXPORT( int, vlc_module_set, (module_t *module, int propid, void *value) );
115
116 enum vlc_module_properties
117 {
118     /* DO NOT EVER REMOVE, INSERT OR REPLACE ANY ITEM! It would break the ABI!
119      * Append new items at the end ONLY. */
120     VLC_MODULE_CPU_REQUIREMENT,
121     VLC_MODULE_SHORTCUT,
122     VLC_MODULE_SHORTNAME,
123     VLC_MODULE_DESCRIPTION,
124     VLC_MODULE_HELP,
125     VLC_MODULE_CAPABILITY,
126     VLC_MODULE_SCORE,
127     VLC_MODULE_PROGRAM,
128     VLC_MODULE_CB_OPEN,
129     VLC_MODULE_CB_CLOSE,
130     VLC_MODULE_UNLOADABLE,
131     VLC_MODULE_NAME
132 };
133
134 VLC_EXPORT( vlc_bool_t, module_IsCapable, ( const module_t *m, const char *cap ) );
135 VLC_EXPORT( const char *, module_GetObjName, ( const module_t *m ) );
136 VLC_EXPORT( const char *, module_GetName, ( const module_t *m, vlc_bool_t long_name ) );
137 #define module_GetLongName( m ) module_GetName( m, VLC_TRUE )
138 VLC_EXPORT( const char *, module_GetHelp, ( const module_t *m ) );