diff options
Diffstat (limited to 'src/common/plugin.c')
-rw-r--r-- | src/common/plugin.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/common/plugin.c b/src/common/plugin.c index b49afd96..ea174bed 100644 --- a/src/common/plugin.c +++ b/src/common/plugin.c @@ -200,13 +200,15 @@ plugin_list_add (hexchat_context *ctx, char *filename, const char *name, return pl; } +#ifndef WIN32 static void * hexchat_dummy (hexchat_plugin *ph) { return NULL; } -#ifdef WIN32 +#else + static int hexchat_read_fd (hexchat_plugin *ph, GIOChannel *source, char *buf, int *len) { |