Danbias/Code/Network/OysterNetworkServer/ServerMain.cpp

18 lines
261 B
C++

#include <iostream>
#include <vector>
#include <vld.h>
#include "../NetworkDependencies/WinsockFunctions.h"
using namespace std;
int main()
{
if(!InitWinSock())
{
cout << "errorMessage: unable to start winsock" << endl;
}
system("pause");
return 0;
}