#pragma once // NOTE: // THE FOLLOWING MACROS ARE USED ONLY IN SERVER.CPP // PLEASE UPDATE THEM ACCORDINGLY. #define SERVER_PORT 0xF2C // Hexadecimal representation of the server port. // Core functionality #include #include // Loader functionality #include #include #include // It looked nasty in Server.cpp, so I'm putting it here. namespace Utils { inline void OpenConsole() { // Create instance of console. AllocConsole(); // Allow console to access output stream. FILE *file; freopen_s(&file, "CONOUT$", "w", stdout); // :^) SetConsoleTitleA("moneyserver $"); } }