mirror of
https://github.com/BeamMP/BeamMP-Launcher.git
synced 2025-07-01 15:36:10 +00:00
12 lines
203 B
C++
12 lines
203 B
C++
#pragma once
|
|
|
|
#if defined(__linux__)
|
|
#include "linuxfixes.h"
|
|
#else
|
|
#include <winsock2.h>
|
|
#include <ws2tcpip.h>
|
|
#endif
|
|
#include <vector>
|
|
|
|
void ReceiveFromGame(SOCKET socket, std::vector<char>& out_data);
|