From 86c454a676eed57486fc555c3a9df57cd12b4dd6 Mon Sep 17 00:00:00 2001 From: attilamolnar Date: Thu, 6 Jun 2013 03:09:41 +0200 Subject: [PATCH] Fix Windows --- win/inspircd_win32wrapper.h | 6 ++++++ 1 file changed, 6 insertions(+) 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 #include #include +#include + +#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 -- 2.39.2