Commit ef6d668d authored by Robert McDonald's avatar Robert McDonald Committed by Alexandre Julliard

include: Add missing typedef keyword to avoid multiply-defined symbols.

parent 7dafe869
...@@ -133,19 +133,19 @@ typedef struct WS(sockaddr_in6) ...@@ -133,19 +133,19 @@ typedef struct WS(sockaddr_in6)
* Multicast group information * Multicast group information
*/ */
struct WS(ip_mreq) typedef struct WS(ip_mreq)
{ {
struct WS(in_addr) imr_multiaddr; struct WS(in_addr) imr_multiaddr;
struct WS(in_addr) imr_interface; struct WS(in_addr) imr_interface;
} WS(IP_MREQ), *WS(PIP_MREQ); } 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_multiaddr;
struct WS(in_addr) imr_sourceaddr; struct WS(in_addr) imr_sourceaddr;
struct WS(in_addr) imr_interface; struct WS(in_addr) imr_interface;
} WS(IP_MREQ_SOURCE), *WS(PIP_MREQ_SOURCE); } 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_multiaddr;
struct WS(in_addr) imsf_interface; struct WS(in_addr) imsf_interface;
ULONG imsf_fmode; ULONG imsf_fmode;
......
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