clamav/platform.h.in

41 lines
649 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"\\clamd.conf"
#define CONFDIR_FRESHCLAM CONFDIR"\\freshclam.conf"
#define CONFDIR_MILTER CONFDIR"\\clamav-milter.conf"