From: attilamolnar Date: Thu, 6 Jun 2013 01:09:41 +0000 (+0200) Subject: Fix Windows X-Git-Url: https://git.netwichtig.de/gitweb/?a=commitdiff_plain;h=86c454a676eed57486fc555c3a9df57cd12b4dd6;p=user%2Fhenk%2Fcode%2Finspircd.git Fix Windows --- 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