Add win socket client and server.

This commit is contained in:
jmsgrogan 2023-01-27 17:04:39 +00:00
parent 426ea55b3b
commit 4d2464c1f5
45 changed files with 1167 additions and 246 deletions

View file

@ -0,0 +1,13 @@
#pragma once
#include "SocketInterface.h"
class WinsockInterface : public ISocketInterface
{
public:
~WinsockInterface();
bool initializeWinsock();
void closeWinsock();
};