diff options
author | Berke Viktor <berkeviktor@aol.com> | 2011-11-30 03:40:07 +0100 |
---|---|---|
committer | Berke Viktor <berkeviktor@aol.com> | 2011-11-30 03:40:07 +0100 |
commit | 845c4915bf51d4d670f527275b99c7423708bbfc (patch) | |
tree | cb5ccd1c2fdb79eabe2def6baa6dde8a655cef0d | |
parent | ab3e3926abce49f0741edf90a1300d4cdcc79670 (diff) |
plugin config unix compatibility part 1
-rw-r--r-- | src/common/plugin.c | 8 | ||||
-rw-r--r-- | src/version-script | 2 |
2 files changed, 9 insertions, 1 deletions
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 <fcntl.h> #include <sys/stat.h> +#ifdef WIN32 +#include <io.h> +#else +#include <unistd.h> +#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: *; }; |