16 lines
264 B
C
16 lines
264 B
C
#pragma once
|
|
|
|
#if defined(_WIN32)
|
|
#ifndef NOMINMAX
|
|
#define NOMINMAX
|
|
#endif
|
|
#ifndef WIN32_LEAN_AND_MEAN
|
|
#define WIN32_LEAN_AND_MEAN
|
|
#endif
|
|
#ifndef INCL_EXTRA_HTON_FUNCTIONS
|
|
#define INCL_EXTRA_HTON_FUNCTIONS
|
|
#endif
|
|
#include <winsock2.h>
|
|
#include <ws2tcpip.h>
|
|
#endif
|