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

Remove never defined HAVE_DL_DYLD and HAVE_IMAGE_H cases

parent 7fa090f0
...@@ -43,19 +43,8 @@ struct module_cache_t ...@@ -43,19 +43,8 @@ struct module_cache_t
#define MODULE_SHORTCUT_MAX 20 #define MODULE_SHORTCUT_MAX 20
/* The module handle type. */ /** The module handle type */
#if defined(HAVE_DL_DYLD) && !defined(__x86_64__) typedef void *module_handle_t;
# if defined (HAVE_MACH_O_DYLD_H)
# include <mach-o/dyld.h>
# endif
typedef NSModule module_handle_t;
#elif defined(HAVE_IMAGE_H)
typedef int module_handle_t;
#elif defined(WIN32) || defined(UNDER_CE) || defined(__SYMBIAN32__)
typedef void * module_handle_t;
#elif defined(HAVE_DL_DLOPEN)
typedef void * module_handle_t;
#endif
typedef int (*vlc_plugin_cb) (module_t *); typedef int (*vlc_plugin_cb) (module_t *);
......
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