VLC  4.0.0-dev
vlc_plugin.h
Go to the documentation of this file.
1 /*****************************************************************************
2  * vlc_plugin.h : Macros used from within a module.
3  *****************************************************************************
4  * Copyright (C) 2001-2006 VLC authors and VideoLAN
5  * Copyright © 2007-2009 Rémi Denis-Courmont
6  *
7  * Authors: Samuel Hocevar <sam@zoy.org>
8  *
9  * This program is free software; you can redistribute it and/or modify it
10  * under the terms of the GNU Lesser General Public License as published by
11  * the Free Software Foundation; either version 2.1 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 Lesser General Public License for more details.
18  *
19  * You should have received a copy of the GNU Lesser General Public License
20  * along with this program; if not, write to the Free Software Foundation,
21  * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22  *****************************************************************************/
23 
24 #ifndef LIBVLC_MODULES_MACROS_H
25 # define LIBVLC_MODULES_MACROS_H 1
26 
27 /**
28  * \file
29  * This file implements plugin (module) macros used to define a vlc module.
30  */
31 
33 {
36 
37  /* DO NOT EVER REMOVE, INSERT OR REPLACE ANY ITEM! It would break the ABI!
38  * Append new items at the end ONLY. */
51  /* Insert new VLC_MODULE_* here */
52 
53  /* DO NOT EVER REMOVE, INSERT OR REPLACE ANY ITEM! It would break the ABI!
54  * Append new items at the end ONLY. */
55  VLC_CONFIG_NAME=0x1000,
56  /* command line name (args=const char *) */
57 
59  /* actual value (args=int64_t/double/const char *) */
60 
62  /* minimum value (args=int64_t/double/const char * twice) */
63 
65  /* reserved - do not use */
66 
68  /* don't write variable to storage (args=none) */
69 
71  /* unused (ignored) */
72 
74  /* hide from user (args=none) */
75 
77  /* tag as no longer supported (args=none) */
78 
80  /* capability for a module or list thereof (args=const char*) */
81 
83  /* one-character (short) command line option name (args=char) */
84 
86  /* unused (ignored) */
87 
89  /* tag as modifiable by untrusted input item "sources" (args=none) */
90 
92  /* description (args=const char *, const char *, const char *) */
93 
95  /* unused (ignored) */
96 
98  /* unused (ignored) */
99 
101  /* list of suggested values
102  * (args=size_t, const <type> *, const char *const *) */
103 
105  /* unused (ignored) */
106 
107  /* Insert new VLC_CONFIG_* here */
108 };
109 
110 /* Configuration hint types */
111 #define CONFIG_HINT_CATEGORY 0x02 /* Start of new category */
112 #define CONFIG_HINT_USAGE 0x05 /* Usage information */
113 
114 #define CONFIG_CATEGORY 0x06 /* Set category */
115 #define CONFIG_SUBCATEGORY 0x07 /* Set subcategory */
116 #define CONFIG_SECTION 0x08 /* Start of new section */
117 
118 /* Configuration item types */
119 #define CONFIG_ITEM_FLOAT 0x20 /* Float option */
120 #define CONFIG_ITEM_INTEGER 0x40 /* Integer option */
121 #define CONFIG_ITEM_RGB 0x41 /* RGB color option */
122 #define CONFIG_ITEM_BOOL 0x60 /* Bool option */
123 #define CONFIG_ITEM_STRING 0x80 /* String option */
124 #define CONFIG_ITEM_PASSWORD 0x81 /* Password option (*) */
125 #define CONFIG_ITEM_KEY 0x82 /* Hot key option */
126 #define CONFIG_ITEM_MODULE 0x84 /* Module option */
127 #define CONFIG_ITEM_MODULE_CAT 0x85 /* Module option */
128 #define CONFIG_ITEM_MODULE_LIST 0x86 /* Module option */
129 #define CONFIG_ITEM_MODULE_LIST_CAT 0x87 /* Module option */
130 #define CONFIG_ITEM_LOADFILE 0x8C /* Read file option */
131 #define CONFIG_ITEM_SAVEFILE 0x8D /* Written file option */
132 #define CONFIG_ITEM_DIRECTORY 0x8E /* Directory option */
133 #define CONFIG_ITEM_FONT 0x8F /* Font option */
134 
135 #define CONFIG_ITEM(x) (((x) & ~0xF) != 0)
136 
137 /* Hidden categories and subcategories */
138 /* Any options under this will be hidden in the GUI preferences, but will be
139  listed in cmdline help output. */
140 #define CAT_HIDDEN -1
141 #define SUBCAT_HIDDEN -1
142 
143 /* Categories and subcategories */
144 #define CAT_INTERFACE 1
145 #define SUBCAT_INTERFACE_GENERAL 101
146 #define SUBCAT_INTERFACE_MAIN 102
147 #define SUBCAT_INTERFACE_CONTROL 103
148 #define SUBCAT_INTERFACE_HOTKEYS 104
149 
150 #define CAT_AUDIO 2
151 #define SUBCAT_AUDIO_GENERAL 201
152 #define SUBCAT_AUDIO_AOUT 202
153 #define SUBCAT_AUDIO_AFILTER 203
154 #define SUBCAT_AUDIO_VISUAL 204
155 #define SUBCAT_AUDIO_RESAMPLER 206
156 
157 #define CAT_VIDEO 3
158 #define SUBCAT_VIDEO_GENERAL 301
159 #define SUBCAT_VIDEO_VOUT 302
160 #define SUBCAT_VIDEO_VFILTER 303
161 #define SUBCAT_VIDEO_SUBPIC 305
162 #define SUBCAT_VIDEO_SPLITTER 306
163 
164 #define CAT_INPUT 4
165 #define SUBCAT_INPUT_GENERAL 401
166 #define SUBCAT_INPUT_ACCESS 402
167 #define SUBCAT_INPUT_DEMUX 403
168 #define SUBCAT_INPUT_VCODEC 404
169 #define SUBCAT_INPUT_ACODEC 405
170 #define SUBCAT_INPUT_SCODEC 406
171 #define SUBCAT_INPUT_STREAM_FILTER 407
172 
173 #define CAT_SOUT 5
174 #define SUBCAT_SOUT_GENERAL 501
175 #define SUBCAT_SOUT_STREAM 502
176 #define SUBCAT_SOUT_MUX 503
177 #define SUBCAT_SOUT_ACO 504
178 #define SUBCAT_SOUT_PACKETIZER 505
179 #define SUBCAT_SOUT_VOD 507
180 #define SUBCAT_SOUT_RENDERER 508
181 
182 #define CAT_ADVANCED 6
183 #define SUBCAT_ADVANCED_MISC 602
184 #define SUBCAT_ADVANCED_NETWORK 603
185 
186 #define CAT_PLAYLIST 7
187 #define SUBCAT_PLAYLIST_GENERAL 701
188 #define SUBCAT_PLAYLIST_SD 702
189 #define SUBCAT_PLAYLIST_EXPORT 703
190 
191 
192 /**
193  * Current plugin ABI version
194  */
195 #define VLC_API_VERSION_STRING "4.0.4"
196 
197 /*****************************************************************************
198  * Add a few defines. You do not want to read this section. Really.
199  *****************************************************************************/
200 
201 /* Explanation:
202  *
203  * if linking a module statically, we will need:
204  * #define MODULE_FUNC( zog ) module_foo_zog
205  *
206  * this can't easily be done with the C preprocessor, thus a few ugly hacks.
207  */
208 
209 /* I need to do _this_ to change « foo bar » to « module_foo_bar » ! */
210 #define CONCATENATE( y, z ) CRUDE_HACK( y, z )
211 #define CRUDE_HACK( y, z ) y##__##z
212 
213 #if defined(__cplusplus)
214 #define EXTERN_SYMBOL extern "C"
215 #else
216 #define EXTERN_SYMBOL
217 #endif
218 
219 /* If the module is built-in, then we need to define foo_InitModule instead
220  * of InitModule. Same for Activate- and DeactivateModule. */
221 #ifdef __PLUGIN__
222 # define VLC_SYMBOL(symbol) symbol
223 # define VLC_MODULE_NAME_HIDDEN_SYMBOL \
224  EXTERN_SYMBOL const char vlc_module_name[] = MODULE_STRING;
225 #else
226 # define VLC_SYMBOL(symbol) CONCATENATE(symbol, MODULE_NAME)
227 # define VLC_MODULE_NAME_HIDDEN_SYMBOL
228 #endif
229 
230 #define CDECL_SYMBOL
231 #if defined (__PLUGIN__)
232 # if defined (_WIN32)
233 # define DLL_SYMBOL __declspec(dllexport)
234 # undef CDECL_SYMBOL
235 # define CDECL_SYMBOL __cdecl
236 # elif defined (__GNUC__)
237 # define DLL_SYMBOL __attribute__((visibility("default")))
238 # else
239 # define DLL_SYMBOL
240 # endif
241 #else
242 # define DLL_SYMBOL
243 #endif
244 
245 EXTERN_SYMBOL typedef int (*vlc_set_cb) (void *, void *, int, ...);
246 
247 #define vlc_plugin_set(...) vlc_set (opaque, NULL, __VA_ARGS__)
248 #define vlc_module_set(...) vlc_set (opaque, module, __VA_ARGS__)
249 #define vlc_config_set(...) vlc_set (opaque, config, __VA_ARGS__)
250 
254 int CDECL_SYMBOL VLC_SYMBOL(vlc_entry_cfg_int_enum)(const char *name,
255  int64_t **values, char ***descs);
257 int CDECL_SYMBOL VLC_SYMBOL(vlc_entry_cfg_str_enum)(const char *name,
258  char ***values, char ***descs);
259 
260 /*
261  * InitModule: this function is called once and only once, when the module
262  * is looked at for the first time. We get the useful data from it, for
263  * instance the module name, its shortcuts, its capabilities... we also create
264  * a copy of its config because the module can be unloaded at any time.
265  */
266 #define vlc_module_begin() \
267 EXTERN_SYMBOL DLL_SYMBOL \
268 int CDECL_SYMBOL VLC_SYMBOL(vlc_entry)(vlc_set_cb vlc_set, void *opaque) \
269 { \
270  module_t *module; \
271  module_config_t *config = NULL; \
272  if (vlc_plugin_set (VLC_MODULE_CREATE, &module)) \
273  goto error; \
274  if (vlc_module_set (VLC_MODULE_NAME, (MODULE_STRING))) \
275  goto error;
276 
277 #define vlc_module_end() \
278  (void) config; \
279  return 0; \
280 error: \
281  return -1; \
282 } \
283 VLC_MODULE_NAME_HIDDEN_SYMBOL \
284 VLC_METADATA_EXPORTS
285 
286 #define add_submodule( ) \
287  if (vlc_plugin_set (VLC_MODULE_CREATE, &module)) \
288  goto error;
289 
290 #define add_shortcut( ... ) \
291 { \
292  const char *shortcuts[] = { __VA_ARGS__ }; \
293  if (vlc_module_set (VLC_MODULE_SHORTCUT, \
294  sizeof(shortcuts)/sizeof(shortcuts[0]), shortcuts)) \
295  goto error; \
296 }
297 
298 #define set_shortname( shortname ) \
299  if (vlc_module_set (VLC_MODULE_SHORTNAME, (const char *)(shortname))) \
300  goto error;
301 
302 #define set_description( desc ) \
303  if (vlc_module_set (VLC_MODULE_DESCRIPTION, (const char *)(desc))) \
304  goto error;
305 
306 #define set_help( help ) \
307  if (vlc_module_set (VLC_MODULE_HELP, (const char *)(help))) \
308  goto error;
309 
310 #define set_capability( cap, score ) \
311  if (vlc_module_set (VLC_MODULE_CAPABILITY, (const char *)(cap)) \
312  || vlc_module_set (VLC_MODULE_SCORE, (int)(score))) \
313  goto error;
314 
315 #define set_callback(activate) \
316  if (vlc_module_set(VLC_MODULE_CB_OPEN, #activate, (void *)(activate))) \
317  goto error;
318 
319 #define set_callbacks( activate, deactivate ) \
320  set_callback(activate) \
321  if (vlc_module_set(VLC_MODULE_CB_CLOSE, #deactivate, \
322  (void (*)(vlc_object_t *))( deactivate ))) \
323  goto error;
324 
325 #define cannot_unload_broken_library( ) \
326  if (vlc_module_set (VLC_MODULE_NO_UNLOAD)) \
327  goto error;
328 
329 #define set_text_domain( dom ) \
330  if (vlc_plugin_set (VLC_MODULE_TEXTDOMAIN, (dom))) \
331  goto error;
332 
333 /*****************************************************************************
334  * Macros used to build the configuration structure.
335  *
336  * Note that internally we support only 3 types of config data: int, float
337  * and string.
338  * The other types declared here just map to one of these 3 basic types but
339  * have the advantage of also providing very good hints to a configuration
340  * interface so as to make it more user friendly.
341  * The configuration structure also includes category hints. These hints can
342  * provide a configuration interface with some very useful data and again
343  * allow for a more user friendly interface.
344  *****************************************************************************/
345 
346 #define add_type_inner( type ) \
347  vlc_plugin_set (VLC_CONFIG_CREATE, (type), &config);
348 
349 #define add_typedesc_inner( type, text, longtext ) \
350  add_type_inner( type ) \
351  vlc_config_set (VLC_CONFIG_DESC, \
352  (const char *)(text), (const char *)(longtext));
353 
354 #define add_typename_inner(type, name, text, longtext) \
355  add_typedesc_inner(type, text, longtext) \
356  vlc_config_set (VLC_CONFIG_NAME, (const char *)(name));
357 
358 #define add_string_inner(type, name, text, longtext, v) \
359  add_typename_inner(type, name, text, longtext) \
360  vlc_config_set (VLC_CONFIG_VALUE, (const char *)(v));
361 
362 #define add_int_inner(type, name, text, longtext, v) \
363  add_typename_inner(type, name, text, longtext) \
364  vlc_config_set (VLC_CONFIG_VALUE, (int64_t)(v));
365 
366 
367 #define set_category( i_id ) \
368  add_type_inner( CONFIG_CATEGORY ) \
369  vlc_config_set (VLC_CONFIG_VALUE, (int64_t)(i_id));
370 
371 #define set_subcategory( i_id ) \
372  add_type_inner( CONFIG_SUBCATEGORY ) \
373  vlc_config_set (VLC_CONFIG_VALUE, (int64_t)(i_id));
374 
375 #define set_section( text, longtext ) \
376  add_typedesc_inner( CONFIG_SECTION, text, longtext )
377 
378 #define add_category_hint(text, longtext) \
379  add_typedesc_inner( CONFIG_HINT_CATEGORY, text, longtext )
380 
381 #define add_usage_hint( text ) \
382  add_typedesc_inner( CONFIG_HINT_USAGE, text, NULL )
383 
384 #define add_string( name, value, text, longtext, advc ) \
385  add_string_inner(CONFIG_ITEM_STRING, name, text, longtext, value)
386 
387 #define add_password(name, value, text, longtext) \
388  add_string_inner(CONFIG_ITEM_PASSWORD, name, text, longtext, value)
389 
390 #define add_loadfile(name, value, text, longtext) \
391  add_string_inner(CONFIG_ITEM_LOADFILE, name, text, longtext, value)
392 
393 #define add_savefile(name, value, text, longtext) \
394  add_string_inner(CONFIG_ITEM_SAVEFILE, name, text, longtext, value)
395 
396 #define add_directory(name, value, text, longtext) \
397  add_string_inner(CONFIG_ITEM_DIRECTORY, name, text, longtext, value)
398 
399 #define add_font(name, value, text, longtext) \
400  add_string_inner(CONFIG_ITEM_FONT, name, text, longtext, value)
401 
402 #define add_module(name, psz_caps, value, text, longtext) \
403  add_string_inner(CONFIG_ITEM_MODULE, name, text, longtext, value) \
404  vlc_config_set (VLC_CONFIG_CAPABILITY, (const char *)(psz_caps));
405 
406 #define add_module_list(name, psz_caps, value, text, longtext) \
407  add_string_inner(CONFIG_ITEM_MODULE_LIST, name, text, longtext, value) \
408  vlc_config_set (VLC_CONFIG_CAPABILITY, (const char *)(psz_caps));
409 
410 #ifndef __PLUGIN__
411 #define add_module_cat(name, i_subcategory, value, text, longtext) \
412  add_string_inner(CONFIG_ITEM_MODULE_CAT, name, text, longtext, value) \
413  change_integer_range (i_subcategory /* gruik */, 0);
414 
415 #define add_module_list_cat(name, i_subcategory, value, text, longtext) \
416  add_string_inner(CONFIG_ITEM_MODULE_LIST_CAT, name, text, longtext, \
417  value) \
418  change_integer_range (i_subcategory /* gruik */, 0);
419 #endif
420 
421 #define add_integer( name, value, text, longtext, advc ) \
422  add_int_inner(CONFIG_ITEM_INTEGER, name, text, longtext, value)
423 
424 #define add_rgb(name, value, text, longtext) \
425  add_int_inner(CONFIG_ITEM_RGB, name, text, longtext, value) \
426  change_integer_range( 0, 0xFFFFFF )
427 
428 #define add_key(name, value, text, longtext) \
429  add_string_inner(CONFIG_ITEM_KEY, "global-" name, text, longtext, \
430  KEY_UNSET) \
431  add_string_inner(CONFIG_ITEM_KEY, name, text, longtext, value)
432 
433 #define add_integer_with_range( name, value, i_min, i_max, text, longtext, advc ) \
434  add_integer( name, value, text, longtext, advc ) \
435  change_integer_range( i_min, i_max )
436 
437 #define add_float( name, v, text, longtext, advc ) \
438  add_typename_inner(CONFIG_ITEM_FLOAT, name, text, longtext) \
439  vlc_config_set (VLC_CONFIG_VALUE, (double)(v));
440 
441 #define add_float_with_range( name, value, f_min, f_max, text, longtext, advc ) \
442  add_float( name, value, text, longtext, advc ) \
443  change_float_range( f_min, f_max )
444 
445 #define add_bool( name, v, text, longtext, advc ) \
446  add_typename_inner(CONFIG_ITEM_BOOL, name, text, longtext) \
447  if (v) vlc_config_set (VLC_CONFIG_VALUE, (int64_t)true);
448 
449 /* For removed option */
450 #define add_obsolete_inner( name, type ) \
451  add_type_inner( type ) \
452  vlc_config_set (VLC_CONFIG_NAME, (const char *)(name)); \
453  vlc_config_set (VLC_CONFIG_REMOVED);
454 
455 #define add_obsolete_bool( name ) \
456  add_obsolete_inner( name, CONFIG_ITEM_BOOL )
457 
458 #define add_obsolete_integer( name ) \
459  add_obsolete_inner( name, CONFIG_ITEM_INTEGER )
460 
461 #define add_obsolete_float( name ) \
462  add_obsolete_inner( name, CONFIG_ITEM_FLOAT )
463 
464 #define add_obsolete_string( name ) \
465  add_obsolete_inner( name, CONFIG_ITEM_STRING )
466 
467 /* Modifier macros for the config options (used for fine tuning) */
468 
469 #define change_short( ch ) \
470  vlc_config_set (VLC_CONFIG_SHORTCUT, (int)(ch));
471 
472 #define change_string_list( list, list_text ) \
473  vlc_config_set (VLC_CONFIG_LIST, \
474  (size_t)(sizeof (list) / sizeof (char *)), \
475  (const char *const *)(list), \
476  (const char *const *)(list_text));
477 
478 #define change_integer_list( list, list_text ) \
479  vlc_config_set (VLC_CONFIG_LIST, \
480  (size_t)(sizeof (list) / sizeof (int)), \
481  (const int *)(list), \
482  (const char *const *)(list_text));
483 
484 #define change_integer_range( minv, maxv ) \
485  vlc_config_set (VLC_CONFIG_RANGE, (int64_t)(minv), (int64_t)(maxv));
486 
487 #define change_float_range( minv, maxv ) \
488  vlc_config_set (VLC_CONFIG_RANGE, (double)(minv), (double)(maxv));
489 
490 /* For options that are saved but hidden from the preferences panel */
491 #define change_private() \
492  vlc_config_set (VLC_CONFIG_PRIVATE);
493 
494 /* For options that cannot be saved in the configuration */
495 #define change_volatile() \
496  change_private() \
497  vlc_config_set (VLC_CONFIG_VOLATILE);
498 
499 #define change_safe() \
500  vlc_config_set (VLC_CONFIG_SAFE);
501 
502 /* Configuration item choice enumerators */
503 #define VLC_CONFIG_INTEGER_ENUM(cb) \
504 EXTERN_SYMBOL DLL_SYMBOL \
505 int CDECL_SYMBOL VLC_SYMBOL(vlc_entry_cfg_int_enum)(const char *name, \
506  int64_t **values, char ***descs) \
507 { \
508  return (cb)(name, values, descs); \
509 }
510 
511 #define VLC_CONFIG_STRING_ENUM(cb) \
512 EXTERN_SYMBOL DLL_SYMBOL \
513 int CDECL_SYMBOL VLC_SYMBOL(vlc_entry_cfg_str_enum)(const char *name, \
514  char ***values, char ***descs) \
515 { \
516  return (cb)(name, values, descs); \
517 }
518 
519 /* Meta data plugin exports */
520 #define VLC_META_EXPORT( name, value ) \
521  EXTERN_SYMBOL DLL_SYMBOL const char * CDECL_SYMBOL \
522  VLC_SYMBOL(vlc_entry_ ## name)(void); \
523  EXTERN_SYMBOL DLL_SYMBOL const char * CDECL_SYMBOL \
524  VLC_SYMBOL(vlc_entry_ ## name)(void) \
525  { \
526  return value; \
527  }
528 
529 #define VLC_API_VERSION_EXPORT \
530  VLC_META_EXPORT(api_version, VLC_API_VERSION_STRING)
531 
532 #define VLC_COPYRIGHT_VIDEOLAN \
533  "\x43\x6f\x70\x79\x72\x69\x67\x68\x74\x20\x28\x43\x29\x20\x74\x68" \
534  "\x65\x20\x56\x69\x64\x65\x6f\x4c\x41\x4e\x20\x56\x4c\x43\x20\x6d" \
535  "\x65\x64\x69\x61\x20\x70\x6c\x61\x79\x65\x72\x20\x64\x65\x76\x65" \
536  "\x6c\x6f\x70\x65\x72\x73"
537 #define VLC_LICENSE_LGPL_2_1_PLUS \
538  "\x4c\x69\x63\x65\x6e\x73\x65\x64\x20\x75\x6e\x64\x65\x72\x20\x74" \
539  "\x68\x65\x20\x74\x65\x72\x6d\x73\x20\x6f\x66\x20\x74\x68\x65\x20" \
540  "\x47\x4e\x55\x20\x4c\x65\x73\x73\x65\x72\x20\x47\x65\x6e\x65\x72" \
541  "\x61\x6c\x20\x50\x75\x62\x6c\x69\x63\x20\x4c\x69\x63\x65\x6e\x73" \
542  "\x65\x2c\x20\x76\x65\x72\x73\x69\x6f\x6e\x20\x32\x2e\x31\x20\x6f" \
543  "\x72\x20\x6c\x61\x74\x65\x72\x2e"
544 #define VLC_LICENSE_GPL_2_PLUS \
545  "\x4c\x69\x63\x65\x6e\x73\x65\x64\x20\x75\x6e\x64\x65\x72\x20\x74" \
546  "\x68\x65\x20\x74\x65\x72\x6d\x73\x20\x6f\x66\x20\x74\x68\x65\x20" \
547  "\x47\x4e\x55\x20\x47\x65\x6e\x65\x72\x61\x6c\x20\x50\x75\x62\x6c" \
548  "\x69\x63\x20\x4c\x69\x63\x65\x6e\x73\x65\x2c\x20\x76\x65\x72\x73" \
549  "\x69\x6f\x6e\x20\x32\x20\x6f\x72\x20\x6c\x61\x74\x65\x72\x2e"
550 #if defined (__LIBVLC__)
551 # define VLC_MODULE_COPYRIGHT VLC_COPYRIGHT_VIDEOLAN
552 # ifndef VLC_MODULE_LICENSE
553 # define VLC_MODULE_LICENSE VLC_LICENSE_LGPL_2_1_PLUS
554 # endif
555 #endif
556 
557 #ifdef VLC_MODULE_COPYRIGHT
558 # define VLC_COPYRIGHT_EXPORT VLC_META_EXPORT(copyright, VLC_MODULE_COPYRIGHT)
559 #else
560 # define VLC_COPYRIGHT_EXPORT
561 #endif
562 #ifdef VLC_MODULE_LICENSE
563 # define VLC_LICENSE_EXPORT VLC_META_EXPORT(license, VLC_MODULE_LICENSE)
564 #else
565 # define VLC_LICENSE_EXPORT
566 #endif
567 
568 #define VLC_METADATA_EXPORTS \
569  VLC_API_VERSION_EXPORT \
570  VLC_COPYRIGHT_EXPORT \
571  VLC_LICENSE_EXPORT
572 
573 #endif
VLC_MODULE_SCORE
@ VLC_MODULE_SCORE
Definition: vlc_plugin.h:43
VLC_MODULE_SHORTCUT
@ VLC_MODULE_SHORTCUT
Definition: vlc_plugin.h:41
VLC_CONFIG_LIST
@ VLC_CONFIG_LIST
Definition: vlc_plugin.h:101
VLC_CONFIG_LIST_OBSOLETE
@ VLC_CONFIG_LIST_OBSOLETE
Definition: vlc_plugin.h:95
VLC_MODULE_DESCRIPTION
@ VLC_MODULE_DESCRIPTION
Definition: vlc_plugin.h:49
VLC_CONFIG_DESC
@ VLC_CONFIG_DESC
Definition: vlc_plugin.h:92
vlc_common.h
VLC_CONFIG_CAPABILITY
@ VLC_CONFIG_CAPABILITY
Definition: vlc_plugin.h:80
VLC_CONFIG_CREATE
@ VLC_CONFIG_CREATE
Definition: vlc_plugin.h:36
VLC_CONFIG_VOLATILE
@ VLC_CONFIG_VOLATILE
Definition: vlc_plugin.h:68
vlc_entry
static void vlc_entry(void *p)
Definition: thread.c:434
VLC_CONFIG_RANGE
@ VLC_CONFIG_RANGE
Definition: vlc_plugin.h:62
VLC_MODULE_TEXTDOMAIN
@ VLC_MODULE_TEXTDOMAIN
Definition: vlc_plugin.h:51
VLC_CONFIG_PRIVATE
@ VLC_CONFIG_PRIVATE
Definition: vlc_plugin.h:74
VLC_CONFIG_PERSISTENT_OBSOLETE
@ VLC_CONFIG_PERSISTENT_OBSOLETE
Definition: vlc_plugin.h:71
vlc_module_properties
vlc_module_properties
Definition: vlc_plugin.h:33
VLC_MODULE_SHORTNAME
@ VLC_MODULE_SHORTNAME
Definition: vlc_plugin.h:48
VLC_CONFIG_REMOVED
@ VLC_CONFIG_REMOVED
Definition: vlc_plugin.h:77
VLC_CONFIG_NAME
@ VLC_CONFIG_NAME
Definition: vlc_plugin.h:56
CDECL_SYMBOL
#define CDECL_SYMBOL
Definition: vlc_plugin.h:231
VLC_MODULE_NAME
@ VLC_MODULE_NAME
Definition: vlc_plugin.h:47
VLC_CONFIG_SHORTCUT
@ VLC_CONFIG_SHORTCUT
Definition: vlc_plugin.h:83
VLC_CONFIG_VALUE
@ VLC_CONFIG_VALUE
Definition: vlc_plugin.h:59
VLC_CONFIG_LIST_CB_OBSOLETE
@ VLC_CONFIG_LIST_CB_OBSOLETE
Definition: vlc_plugin.h:105
VLC_CONFIG_OLDNAME_OBSOLETE
@ VLC_CONFIG_OLDNAME_OBSOLETE
Definition: vlc_plugin.h:86
vlc_set_cb
int(* vlc_set_cb)(void *, void *, int,...)
Definition: vlc_plugin.h:246
VLC_MODULE_CPU_REQUIREMENT
@ VLC_MODULE_CPU_REQUIREMENT
Definition: vlc_plugin.h:40
VLC_MODULE_NO_UNLOAD
@ VLC_MODULE_NO_UNLOAD
Definition: vlc_plugin.h:46
VLC_SYMBOL
#define VLC_SYMBOL(symbol)
Definition: vlc_plugin.h:227
VLC_CONFIG_ADD_ACTION_OBSOLETE
@ VLC_CONFIG_ADD_ACTION_OBSOLETE
Definition: vlc_plugin.h:98
VLC_MODULE_HELP
@ VLC_MODULE_HELP
Definition: vlc_plugin.h:50
EXTERN_SYMBOL
#define EXTERN_SYMBOL
Definition: vlc_plugin.h:217
VLC_CONFIG_ADVANCED_RESERVED
@ VLC_CONFIG_ADVANCED_RESERVED
Definition: vlc_plugin.h:65
VLC_CONFIG_SAFE
@ VLC_CONFIG_SAFE
Definition: vlc_plugin.h:89
VLC_MODULE_CREATE
@ VLC_MODULE_CREATE
Definition: vlc_plugin.h:35
VLC_MODULE_CB_OPEN
@ VLC_MODULE_CB_OPEN
Definition: vlc_plugin.h:44
name
const char name[16]
Definition: httpd.c:1268
VLC_MODULE_CAPABILITY
@ VLC_MODULE_CAPABILITY
Definition: vlc_plugin.h:42
DLL_SYMBOL
#define DLL_SYMBOL
Definition: vlc_plugin.h:243
VLC_MODULE_CB_CLOSE
@ VLC_MODULE_CB_CLOSE
Definition: vlc_plugin.h:45