Visual Studio compile fixes.

This commit is contained in:
Jan Vidar Krey
2011-01-06 12:25:44 +01:00
parent 03b4252ab5
commit bf4ad5624a
5 changed files with 12 additions and 16 deletions

View File

@@ -22,17 +22,13 @@
#include "plugin_api/handle.h"
#ifdef PLUGIN_SUPPORT
struct hub_config;
struct linked_list;
struct plugin_handle;
struct uhub_plugin
{
#ifdef HAVE_DLOPEN
void* handle;
#endif
plugin_unregister_f unregister;
};
@@ -54,9 +50,5 @@ extern struct uhub_plugin* plugin_open(const char* filename);
extern void plugin_close(struct uhub_plugin*);
extern void* plugin_lookup_symbol(struct uhub_plugin*, const char* symbol);
#endif /* PLUGIN_SUPPORT */
#endif /* HAVE_UHUB_PLUGIN_LOADER_H */