Danbias/Code/Network/OysterNetworkServer/ServerMain.cpp

18 lines
261 B
C++
Raw Normal View History

2013-11-18 16:47:57 +01:00
#include <iostream>
#include <vector>
2013-11-22 14:23:08 +01:00
#include <vld.h>
#include "../NetworkDependencies/WinsockFunctions.h"
using namespace std;
int main()
{
2013-11-26 13:45:03 +01:00
if(!InitWinSock())
{
2013-11-26 13:45:03 +01:00
cout << "errorMessage: unable to start winsock" << endl;
}
system("pause");
2013-11-22 15:48:49 +01:00
return 0;
}