From b1675d448b01caa704e94ef6356eb09ef95d4ff9 Mon Sep 17 00:00:00 2001 From: Timo Kreuzer Date: Fri, 9 Apr 2010 13:06:30 +0000 Subject: [PATCH] [RPCRT4] 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 | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/dll/win32/rpcrt4/unix_func.h b/dll/win32/rpcrt4/unix_func.h index c56427d2df1..4a100b7fbf6 100644 --- a/dll/win32/rpcrt4/unix_func.h +++ b/dll/win32/rpcrt4/unix_func.h @@ -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);