1
0

Changed everyting to Unix line endings.

This commit is contained in:
Alexander Harkness
2013-07-29 12:13:03 +01:00
parent 20e7221c7c
commit 53e22b1185
389 changed files with 66228 additions and 66228 deletions

View File

@@ -1,32 +1,32 @@
// ProtoProxy.cpp
// Implements the main app entrypoint
#include "Globals.h"
#include "Server.h"
int main(int argc, char ** argv)
{
int ListenPort = (argc > 1) ? atoi(argv[1]) : 25564;
int ConnectPort = (argc > 2) ? atoi(argv[2]) : 25565;
cServer Server;
int res = Server.Init(ListenPort, ConnectPort);
if (res != 0)
{
printf("Server initialization failed: %d", res);
return res;
}
Server.Run();
return 0;
}
// ProtoProxy.cpp
// Implements the main app entrypoint
#include "Globals.h"
#include "Server.h"
int main(int argc, char ** argv)
{
int ListenPort = (argc > 1) ? atoi(argv[1]) : 25564;
int ConnectPort = (argc > 2) ? atoi(argv[2]) : 25565;
cServer Server;
int res = Server.Init(ListenPort, ConnectPort);
if (res != 0)
{
printf("Server initialization failed: %d", res);
return res;
}
Server.Run();
return 0;
}