[vlc-commits] Remove never defined HAVE_DL_DYLD and HAVE_IMAGE_H cases
Rémi Denis-Courmont
git at videolan.org
Tue Aug 16 18:20:55 CEST 2011
vlc | branch: master | Rémi Denis-Courmont <remi at remlab.net> | Tue Aug 16 14:27:54 2011 +0300| [f524e307c27f9cdf6928a46530b3d5ce5bc085d5] | committer: Rémi Denis-Courmont
Remove never defined HAVE_DL_DYLD and HAVE_IMAGE_H cases
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=f524e307c27f9cdf6928a46530b3d5ce5bc085d5
---
src/modules/modules.h | 15 ++-------------
1 files changed, 2 insertions(+), 13 deletions(-)
diff --git a/src/modules/modules.h b/src/modules/modules.h
index e74d5ce..84ede86 100644
--- a/src/modules/modules.h
+++ b/src/modules/modules.h
@@ -43,19 +43,8 @@ struct module_cache_t
#define MODULE_SHORTCUT_MAX 20
-/* The module handle type. */
-#if defined(HAVE_DL_DYLD) && !defined(__x86_64__)
-# 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
+/** The module handle type */
+typedef void *module_handle_t;
typedef int (*vlc_plugin_cb) (module_t *);
More information about the vlc-commits
mailing list