From ef6d668d6312b5f2c8423b5b1e596c44f19a1ff3 Mon Sep 17 00:00:00 2001 From: Robert McDonald Date: Wed, 2 Jun 2010 12:07:50 -0700 Subject: [PATCH] include: Add missing typedef keyword to avoid multiply-defined symbols. --- include/ws2ipdef.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/ws2ipdef.h b/include/ws2ipdef.h index 9818fbd3f97..11b3689055d 100644 --- a/include/ws2ipdef.h +++ b/include/ws2ipdef.h @@ -133,19 +133,19 @@ typedef struct WS(sockaddr_in6) * Multicast group information */ -struct WS(ip_mreq) +typedef struct WS(ip_mreq) { struct WS(in_addr) imr_multiaddr; struct WS(in_addr) imr_interface; } WS(IP_MREQ), *WS(PIP_MREQ); -struct WS(ip_mreq_source) { +typedef struct WS(ip_mreq_source) { struct WS(in_addr) imr_multiaddr; struct WS(in_addr) imr_sourceaddr; struct WS(in_addr) imr_interface; } WS(IP_MREQ_SOURCE), *WS(PIP_MREQ_SOURCE); -struct WS(ip_msfilter) { +typedef struct WS(ip_msfilter) { struct WS(in_addr) imsf_multiaddr; struct WS(in_addr) imsf_interface; ULONG imsf_fmode;