Initialization of WinSock librarry

This commit is contained in:
2019-12-25 11:28:54 +01:00
parent 8c5a2bd7ac
commit 78dd5366a0
49 changed files with 138 additions and 41 deletions

14
SocketLibrary/Network.h Normal file
View File

@@ -0,0 +1,14 @@
#pragma once
#define WIN32_LEAN_AND_MEAN
//#include <WinSock2.h>
namespace SocketLibrary
{
class Network
{
public:
static bool Initialize();
static void Shutdown();
};
}