X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=aros%2Faros_compat.h;h=2089bc89a13dd1bdd4ff11aa6113fd9c5940c8fe;hb=HEAD;hp=f9db0599bca6a2d6bcbff3fd000f8561b6ed9312;hpb=d7c6e9aaa9df593e951e2f19106dcc71102e74f1;p=deb_libnfs.git diff --git a/aros/aros_compat.h b/aros/aros_compat.h index f9db059..2089bc8 100644 --- a/aros/aros_compat.h +++ b/aros/aros_compat.h @@ -1,10 +1,46 @@ +/* + Copyright (C) 2013 by Ronnie Sahlberg + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU Lesser General Public License as published by + the Free Software Foundation; either version 2.1 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public License + along with this program; if not, see . +*/ + #ifndef AROS_COMPAT_H #define AROS_COMPAT_H +#include +#include +#include #include #include +#include +#include +#include +#include +#include #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 @@ -20,6 +56,11 @@ #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 */