From 845c4915bf51d4d670f527275b99c7423708bbfc Mon Sep 17 00:00:00 2001 From: Berke Viktor Date: Wed, 30 Nov 2011 03:40:07 +0100 Subject: [PATCH] plugin config unix compatibility part 1 --- src/common/plugin.c | 8 +++++++- src/version-script | 2 ++ 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/src/common/plugin.c b/src/common/plugin.c index 7bc39400..45109ee2 100644 --- a/src/common/plugin.c +++ b/src/common/plugin.c @@ -23,6 +23,12 @@ #include #include +#ifdef WIN32 +#include +#else +#include +#endif + #include "xchat.h" #include "fe.h" #include "util.h" @@ -1686,7 +1692,7 @@ xchat_get_plugin_pref (xchat_plugin *pl, char *var, char *dest) g_free (canon); /* partly borrowed from palette.c */ - fh = xchat_open_file (confname, _O_RDONLY, 0, 0); + fh = xchat_open_file (confname, O_RDONLY, 0, 0); if (fh == -1) { diff --git a/src/version-script b/src/version-script index 048c1f55..e747958b 100644 --- a/src/version-script +++ b/src/version-script @@ -30,5 +30,7 @@ EXPORTED { xchat_send_modes; xchat_strip; xchat_free; + xchat_set_plugin_pref; + xchat_get_plugin_pref; local: *; };