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