16 lines
143 B
C
16 lines
143 B
C
|
|
||
|
|
||
|
#ifndef UPNPINET_H
|
||
|
#define UPNPINET_H
|
||
|
|
||
|
|
||
|
#ifdef WIN32
|
||
|
#include <Ws2tcpip.h>
|
||
|
#else
|
||
|
#include <netinet/in.h>
|
||
|
#endif
|
||
|
|
||
|
|
||
|
#endif /* UPNPINET_H */
|
||
|
|