[RPCRT4]
authorTimo Kreuzer <timo.kreuzer@reactos.org>
Fri, 9 Apr 2010 13:06:30 +0000 (13:06 +0000)
committerTimo Kreuzer <timo.kreuzer@reactos.org>
Fri, 9 Apr 2010 13:06:30 +0000 (13:06 +0000)
Remove some definitions from unix_func.h, as we have them in our public headers now. This file is not wine synced.

svn path=/branches/header-work/; revision=46790

dll/win32/rpcrt4/unix_func.h

index c56427d..4a100b7 100644 (file)
@@ -1,19 +1,4 @@
 
-#define POLLIN 001
-#define POLLPRI 002
-#define POLLOUT 004
-#define POLLNORM POLLIN
-#define POLLERR 010
-#define POLLHUP 020
-#define POLLNVAL 040
-
-struct pollfd
-{
-    int fd;           /* file descriptor */
-    short events;     /* requested events */
-    short revents;    /* returned events */
-};
-
 #define F_SETFL                4       /* set file->f_flags */
 
 #ifndef O_NONBLOCK
@@ -24,5 +9,4 @@ struct pollfd
 
 int poll(struct pollfd *fds, unsigned long nfds, int timo);
 int socketpair (int af, int type, int protocol, SOCKET socket[2]);
-const char * inet_ntop (int af, const void *src, char *dst, size_t cnt);
 int fcntl(int fd, int cmd, long arg);