Module: wine Branch: master Commit: ef6d668d6312b5f2c8423b5b1e596c44f19a1ff3 URL: http://source.winehq.org/git/wine.git/?a=commit;h=ef6d668d6312b5f2c8423b5b1e...
Author: Robert McDonald rmcdonald@bittorrent.com Date: Wed Jun 2 12:07:50 2010 -0700
include: Add missing typedef keyword to avoid multiply-defined symbols.
---
include/ws2ipdef.h | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/include/ws2ipdef.h b/include/ws2ipdef.h index 9818fbd..11b3689 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;