Merge pull request #47 from Memphiz/win32fix3
[deb_libnfs.git] / aros / aros_compat.h
index f9db0599bca6a2d6bcbff3fd000f8561b6ed9312..76de2ac948f724daefc71df716b7a905d754b407 100644 (file)
@@ -1,10 +1,29 @@
 #ifndef AROS_COMPAT_H
 #define AROS_COMPAT_H
 
+#include <unistd.h>
+#include <sys/types.h>
+#include <sys/ioctl.h>
 #include <netinet/in.h>
 #include <sys/mount.h>
+#include <proto/socket.h>
+#include <proto/exec.h>
+#include <netdb.h>
+#include <net/if.h>
+#include <netinet/in.h>
 
 #define statvfs statfs
+#define ioctl IoctlSocket
+#define close CloseSocket
+
+#define inet_pton aros_inet_pton
+#define freeaddrinfo aros_freeaddrinfo
+#define getnameinfo aros_getnameinfo
+#define getaddrinfo aros_getaddrinfo
+
+extern struct Library * SocketBase;
+
+void aros_init_socket(void);
 
 #define f_flag    f_flags
 #define f_favail  f_ffree
 #define POLLHUP     0x0010    /* Hung up */
 #define POLLNVAL    0x0020    /* Invalid request: fd not open */
 
+struct utimbuf {
+       int actime;
+       int modtime;
+};
+
 struct pollfd {
     int fd;           /* file descriptor */
     short events;     /* requested events */