stuff-from-scratch/src/base/network/sockets/WinsockInterface.h
2023-01-27 17:04:39 +00:00

13 lines
No EOL
187 B
C++

#pragma once
#include "SocketInterface.h"
class WinsockInterface : public ISocketInterface
{
public:
~WinsockInterface();
bool initializeWinsock();
void closeWinsock();
};