diff options
author | attilamolnar <attilamolnar@hush.com> | 2013-06-06 03:09:41 +0200 |
---|---|---|
committer | attilamolnar <attilamolnar@hush.com> | 2013-06-06 03:09:41 +0200 |
commit | 86c454a676eed57486fc555c3a9df57cd12b4dd6 (patch) | |
tree | a5ce8dcd23ab2142d8e22c5e86d9e4101d559d42 /win/inspircd_win32wrapper.h | |
parent | f00ac52c5d593fcb761fc316b2582bb06158035c (diff) |
Fix Windows
Diffstat (limited to 'win/inspircd_win32wrapper.h')
-rw-r--r-- | win/inspircd_win32wrapper.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/win/inspircd_win32wrapper.h b/win/inspircd_win32wrapper.h index 8234dfefe..6619ac09a 100644 --- a/win/inspircd_win32wrapper.h +++ b/win/inspircd_win32wrapper.h @@ -68,6 +68,12 @@ #include <sys/stat.h> #include <direct.h> #include <process.h> +#include <io.h> + +#define F_OK 0 /* test for existence of file */ +#define X_OK (1<<0) /* test for execute or search permission */ +#define W_OK (1<<1) /* test for write permission */ +#define R_OK (1<<2) /* test for read permission */ /* Windows defines this already. */ #undef ERROR |