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
67792898
Commit
67792898
authored
Sep 21, 2005
by
Vijay Kiran Kamuju
Committed by
Alexandre Julliard
Sep 21, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added addrinfo structures.
parent
2a75800c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
27 additions
and
0 deletions
+27
-0
ws2tcpip.h
include/ws2tcpip.h
+27
-0
No files found.
include/ws2tcpip.h
View file @
67792898
...
@@ -28,6 +28,33 @@
...
@@ -28,6 +28,33 @@
/* FIXME: This gets defined by some Unix (Linux) header and messes things */
/* FIXME: This gets defined by some Unix (Linux) header and messes things */
#undef s6_addr
#undef s6_addr
/* for addrinfo calls */
typedef
struct
WS
(
addrinfo
)
{
int
ai_flags
;
int
ai_family
;
int
ai_socktype
;
int
ai_protocol
;
size_t
ai_addrlen
;
char
*
ai_canonname
;
struct
WS
(
sockaddr
)
*
ai_addr
;
struct
WS
(
addrinfo
)
*
ai_next
;
}
ADDRINFOA
,
*
PADDRINFOA
;
typedef
struct
WS
(
addrinfoW
)
{
int
ai_flags
;
int
ai_family
;
int
ai_socktype
;
int
ai_protocol
;
size_t
ai_addrlen
;
PWSTR
ai_canonname
;
struct
WS
(
sockaddr
)
*
ai_addr
;
struct
WS
(
addrinfoW
)
*
ai_next
;
}
ADDRINFOW
,
*
PADDRINFOW
;
typedef
ADDRINFOA
ADDRINFO
;
/*
/*
* Multicast group information
* Multicast group information
*/
*/
...
...
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