mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-14 07:21:48 +00:00
Compile fix for Loginserver
This commit is contained in:
parent
908c7b1464
commit
65397cf03e
@ -18,7 +18,7 @@
|
|||||||
#ifndef EQEMU_CLIENT_H
|
#ifndef EQEMU_CLIENT_H
|
||||||
#define EQEMU_CLIENT_H
|
#define EQEMU_CLIENT_H
|
||||||
|
|
||||||
#include "../common/debug.h"
|
#include "../common/global_define.h"
|
||||||
#include "../common/opcodemgr.h"
|
#include "../common/opcodemgr.h"
|
||||||
#include "../common/eq_stream_type.h"
|
#include "../common/eq_stream_type.h"
|
||||||
#include "../common/eq_stream_factory.h"
|
#include "../common/eq_stream_factory.h"
|
||||||
|
|||||||
@ -18,7 +18,7 @@
|
|||||||
#ifndef EQEMU_CLIENTMANAGER_H
|
#ifndef EQEMU_CLIENTMANAGER_H
|
||||||
#define EQEMU_CLIENTMANAGER_H
|
#define EQEMU_CLIENTMANAGER_H
|
||||||
|
|
||||||
#include "../common/debug.h"
|
#include "../common/global_define.h"
|
||||||
#include "../common/opcodemgr.h"
|
#include "../common/opcodemgr.h"
|
||||||
#include "../common/eq_stream_type.h"
|
#include "../common/eq_stream_type.h"
|
||||||
#include "../common/eq_stream_factory.h"
|
#include "../common/eq_stream_factory.h"
|
||||||
|
|||||||
@ -15,7 +15,7 @@
|
|||||||
along with this program; if not, write to the Free Software
|
along with this program; if not, write to the Free Software
|
||||||
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
*/
|
*/
|
||||||
#include "../common/debug.h"
|
#include "../common/global_define.h"
|
||||||
#include "config.h"
|
#include "config.h"
|
||||||
#include "error_log.h"
|
#include "error_log.h"
|
||||||
|
|
||||||
|
|||||||
@ -15,7 +15,7 @@
|
|||||||
along with this program; if not, write to the Free Software
|
along with this program; if not, write to the Free Software
|
||||||
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
*/
|
*/
|
||||||
#include "../common/debug.h"
|
#include "../common/global_define.h"
|
||||||
#include "database.h"
|
#include "database.h"
|
||||||
|
|
||||||
#ifdef EQEMU_MYSQL_ENABLED
|
#ifdef EQEMU_MYSQL_ENABLED
|
||||||
|
|||||||
@ -15,7 +15,7 @@
|
|||||||
along with this program; if not, write to the Free Software
|
along with this program; if not, write to the Free Software
|
||||||
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
*/
|
*/
|
||||||
#include "../common/debug.h"
|
#include "../common/global_define.h"
|
||||||
#include "database.h"
|
#include "database.h"
|
||||||
|
|
||||||
#ifdef EQEMU_POSTGRESQL_ENABLED
|
#ifdef EQEMU_POSTGRESQL_ENABLED
|
||||||
|
|||||||
@ -15,7 +15,7 @@
|
|||||||
along with this program; if not, write to the Free Software
|
along with this program; if not, write to the Free Software
|
||||||
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
*/
|
*/
|
||||||
#include "../common/debug.h"
|
#include "../common/global_define.h"
|
||||||
#include "encryption.h"
|
#include "encryption.h"
|
||||||
#include "error_log.h"
|
#include "error_log.h"
|
||||||
#include <string>
|
#include <string>
|
||||||
|
|||||||
@ -15,7 +15,7 @@
|
|||||||
along with this program; if not, write to the Free Software
|
along with this program; if not, write to the Free Software
|
||||||
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
*/
|
*/
|
||||||
#include "../common/debug.h"
|
#include "../common/global_define.h"
|
||||||
#include "../common/types.h"
|
#include "../common/types.h"
|
||||||
#include "../common/opcodemgr.h"
|
#include "../common/opcodemgr.h"
|
||||||
#include "../common/eq_stream_factory.h"
|
#include "../common/eq_stream_factory.h"
|
||||||
@ -31,7 +31,7 @@
|
|||||||
|
|
||||||
TimeoutManager timeout_manager;
|
TimeoutManager timeout_manager;
|
||||||
LoginServer server;
|
LoginServer server;
|
||||||
EQEmuLogSys logger;
|
EQEmuLogSys Log;
|
||||||
ErrorLog *server_log;
|
ErrorLog *server_log;
|
||||||
bool run_server = true;
|
bool run_server = true;
|
||||||
|
|
||||||
|
|||||||
@ -18,7 +18,7 @@
|
|||||||
#ifndef EQEMU_SERVERMANAGER_H
|
#ifndef EQEMU_SERVERMANAGER_H
|
||||||
#define EQEMU_SERVERMANAGER_H
|
#define EQEMU_SERVERMANAGER_H
|
||||||
|
|
||||||
#include "../common/debug.h"
|
#include "../common/global_define.h"
|
||||||
#include "../common/eq_stream_factory.h"
|
#include "../common/eq_stream_factory.h"
|
||||||
#include "../common/emu_tcp_connection.h"
|
#include "../common/emu_tcp_connection.h"
|
||||||
#include "../common/emu_tcp_server.h"
|
#include "../common/emu_tcp_server.h"
|
||||||
|
|||||||
@ -18,7 +18,7 @@
|
|||||||
#ifndef EQEMU_WORLDSERVER_H
|
#ifndef EQEMU_WORLDSERVER_H
|
||||||
#define EQEMU_WORLDSERVER_H
|
#define EQEMU_WORLDSERVER_H
|
||||||
|
|
||||||
#include "../common/debug.h"
|
#include "../common/global_define.h"
|
||||||
#include "../common/eq_stream_factory.h"
|
#include "../common/eq_stream_factory.h"
|
||||||
#include "../common/emu_tcp_connection.h"
|
#include "../common/emu_tcp_connection.h"
|
||||||
#include "../common/emu_tcp_server.h"
|
#include "../common/emu_tcp_server.h"
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user