Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
65cab52a
Commit
65cab52a
authored
Sep 16, 2000
by
Jeremy White
Committed by
Alexandre Julliard
Sep 16, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Adjusted to allow MFC compilation; prevent definition of struct fd_set
which conflicts with the fd_set typedef.
parent
58254446
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
2 deletions
+5
-2
winsock.h
include/winsock.h
+5
-2
No files found.
include/winsock.h
View file @
65cab52a
...
...
@@ -23,6 +23,7 @@
#include <fcntl.h>
#include <netdb.h>
#include <sys/socket.h>
#include <sys/ioctl.h>
#ifdef HAVE_IPX_GNU
# include <netipx/ipx.h>
...
...
@@ -91,12 +92,14 @@ typedef struct
SOCKET16
fd_array
[
FD_SETSIZE
];
/* an array of SOCKETs */
}
ws_fd_set16
;
typedef
struct
typedef
struct
ws_fd_set32_struct
{
UINT
fd_count
;
/* how many are SET? */
SOCKET
fd_array
[
FD_SETSIZE
];
/* an array of SOCKETs */
}
ws_fd_set32
;
/* ws_fd_set operations */
INT16
WINAPI
__WSAFDIsSet16
(
SOCKET16
,
ws_fd_set16
*
);
...
...
@@ -499,7 +502,7 @@ typedef struct sockaddr SOCKADDR, *PSOCKADDR, *LPSOCKADDR;
typedef
struct
sockaddr_in
SOCKADDR_IN
,
*
PSOCKADDR_IN
,
*
LPSOCKADDR_IN
;
typedef
struct
linger
LINGER
,
*
PLINGER
,
*
LPLINGER
;
typedef
struct
in_addr
IN_ADDR
,
*
PIN_ADDR
,
*
LPIN_ADDR
;
typedef
struct
fd_se
t
FD_SET
,
*
PFD_SET
,
*
LPFD_SET
;
typedef
struct
ws_fd_set32_struc
t
FD_SET
,
*
PFD_SET
,
*
LPFD_SET
;
typedef
struct
hostent
HOSTENT
,
*
PHOSTENT
,
*
LPHOSTENT
;
typedef
struct
servent
SERVENT
,
*
PSERVENT
,
*
LPSERVENT
;
typedef
struct
protoent
PROTOENT
,
*
PPROTOENT
,
*
LPPROTOENT
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment