2012-04-02 08:56:30 +02:00
|
|
|
#ifndef UNIX_H
|
|
|
|
#define UNIX_H
|
2012-03-28 13:24:49 +02:00
|
|
|
|
2012-04-02 19:38:04 +02:00
|
|
|
#include <limits.h>
|
2012-03-28 13:24:49 +02:00
|
|
|
#include <unistd.h>
|
|
|
|
#include <sys/types.h>
|
2012-04-01 09:48:52 +02:00
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <fcntl.h>
|
2012-03-28 13:24:49 +02:00
|
|
|
#include <sys/socket.h>
|
2012-04-04 12:22:46 +02:00
|
|
|
#include <netdb.h>
|
2012-03-29 20:03:29 +02:00
|
|
|
#include <sys/ioctl.h>
|
2012-03-28 13:24:49 +02:00
|
|
|
#include <netinet/in.h>
|
|
|
|
#include <arpa/inet.h>
|
2012-04-01 09:48:52 +02:00
|
|
|
#include <pthread.h>
|
2012-04-03 19:49:56 +02:00
|
|
|
#include <signal.h>
|
2012-03-28 13:24:49 +02:00
|
|
|
|
2012-04-02 10:26:38 +02:00
|
|
|
void Sleep(unsigned long milliseconds);
|
2012-03-28 13:24:49 +02:00
|
|
|
|
2012-04-02 10:26:38 +02:00
|
|
|
typedef int SOCKET;
|
2012-03-28 13:24:49 +02:00
|
|
|
#define INVALID_SOCKET (-1)
|
2012-04-02 10:26:38 +02:00
|
|
|
void closesocket(SOCKET fd);
|
2012-03-28 13:24:49 +02:00
|
|
|
|
2012-03-29 13:15:54 +02:00
|
|
|
#define ioctlsocket ioctl
|
|
|
|
|
2012-04-02 13:09:33 +02:00
|
|
|
#define MAXPATHLEN PATH_MAX
|
|
|
|
|
2012-03-31 15:18:09 +02:00
|
|
|
/* default visibility takes care of exported symbols */
|
|
|
|
#define I2_EXPORT
|
|
|
|
#define I2_IMPORT
|
|
|
|
|
2012-04-02 08:56:30 +02:00
|
|
|
#endif /* UNIX_H */
|