Commit 22fca3a1 authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

ws2def.h: Fixed ADDRINFOEX declaration.

parent 9d452e2c
......@@ -115,11 +115,11 @@ typedef struct addrinfoexA {
int ai_family;
int ai_socktype;
int ai_protocol;
size_t ai_addrlen;
SIZE_T ai_addrlen;
char *ai_canonname;
struct sockaddr *ai_addr;
struct WS(sockaddr) *ai_addr;
void *ai_blob;
size_t ai_bloblen;
SIZE_T ai_bloblen;
GUID *ai_provider;
struct addrinfoexA *ai_next;
} ADDRINFOEXA, *PADDRINFOEXA, *LPADDRINFOEXA;
......@@ -129,11 +129,11 @@ typedef struct addrinfoexW {
int ai_family;
int ai_socktype;
int ai_protocol;
size_t ai_addrlen;
SIZE_T ai_addrlen;
WCHAR *ai_canonname;
struct sockaddr *ai_addr;
struct WS(sockaddr) *ai_addr;
void *ai_blob;
size_t ai_bloblen;
SIZE_T ai_bloblen;
GUID *ai_provider;
struct addrinfoexW *ai_next;
} ADDRINFOEXW, *PADDRINFOEXW, *LPADDRINFOEXW;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment