clamav/platform.h.in

44 lines
742 B
C
Raw Normal View History

2009-09-25 00:38:23 +02:00
#ifndef _WIN32
#define closesocket(s) close(s)
#endif
#ifndef O_BINARY
#define O_BINARY 0
#endif
#ifndef FALSE
#define FALSE (0)
#endif
#ifndef TRUE
#define TRUE (1)
#endif
#ifndef MIN
#define MIN(a, b) (((a) < (b)) ? (a) : (b))
#endif
#ifndef MAX
#define MAX(a,b) (((a) > (b)) ? (a) : (b))
#endif
#ifndef HAVE_IN_PORT_T
typedef unsigned short in_port_t;
#endif
#ifndef HAVE_IN_ADDR_T
typedef unsigned int in_addr_t;
#endif
#ifdef _WIN32
#define PATHSEP "\\"
#else
#define PATHSEP "/"
#endif
2009-10-20 19:44:45 +02:00
#define CONFDIR_CLAMD CONFDIR PATHSEP "clamd.conf"
#define CONFDIR_FRESHCLAM CONFDIR PATHSEP "freshclam.conf"
#define CONFDIR_MILTER CONFDIR PATHSEP "clamav-milter.conf"
2009-10-20 19:44:45 +02:00
2009-10-21 17:51:33 +02:00
/* Nothing is safe in windows, not even open */
#define safe_open open