2013-11-25 20:27:23 +01:00
|
|
|
#ifndef NETWORK_DEPENDENCIES_WINSOCK_FUNCTIONS_H
|
|
|
|
#define NETWORK_DEPENDENCIES_WINSOCK_FUNCTIONS_H
|
|
|
|
|
|
|
|
/////////////////////////////////////
|
|
|
|
// Created by Pontus Fransson 2013 //
|
|
|
|
/////////////////////////////////////
|
|
|
|
|
2013-11-29 09:11:30 +01:00
|
|
|
#include <string>
|
2013-11-26 13:45:03 +01:00
|
|
|
|
|
|
|
void ShutdownWinSock();
|
|
|
|
bool InitWinSock();
|
|
|
|
|
|
|
|
std::wstring GetErrorMessage(int errorCode);
|
2013-11-25 20:27:23 +01:00
|
|
|
|
|
|
|
#endif
|