mirror of
https://github.com/moonlight-stream/Internet-Hosting-Tool.git
synced 2025-07-03 00:06:11 +00:00
17 lines
365 B
C
17 lines
365 B
C
#pragma once
|
|
|
|
#define _CRT_RAND_S
|
|
#define _CRT_SECURE_NO_WARNINGS
|
|
#include <stdlib.h>
|
|
|
|
#define WIN32_LEAN_AND_MEAN
|
|
#define _WINSOCK_DEPRECATED_NO_WARNINGS
|
|
#include <Windows.h>
|
|
#include <WinSock2.h>
|
|
|
|
#include "..\version.h"
|
|
|
|
#define CONSOLE_OUT stdout
|
|
#define LOG_OUT stderr
|
|
|
|
bool getExternalAddressPortIP4(int proto, unsigned short localPort, PSOCKADDR_IN wanAddr); |