More renames

This commit is contained in:
KimLS 2014-08-21 23:05:21 -07:00
parent cd0824ee71
commit 5bf49d2ef9
25 changed files with 68 additions and 68 deletions

View File

@ -1,37 +1,37 @@
CMAKE_MINIMUM_REQUIRED(VERSION 2.8)
SET(eqlogin_sources
Client.cpp
ClientManager.cpp
Config.cpp
DatabaseMySQL.cpp
DatabasePostgreSQL.cpp
ErrorLog.cpp
Main.cpp
ServerManager.cpp
WorldServer.cpp
client.cpp
client_manager.cpp
config.cpp
database_mysql.cpp
database_postgresql.cpp
error_log.cpp
main.cpp
server_manager.cpp
world_server.cpp
)
IF(MSVC OR MINGW)
ADD_DEFINITIONS(-DNOMINMAX)
SET(eqlogin_sources ${eqlogin_sources} Encryption.cpp)
SET(eqlogin_sources ${eqlogin_sources} encryption.cpp)
ENDIF(MSVC OR MINGW)
SET(eqlogin_headers
Client.h
ClientManager.h
Config.h
Database.h
DatabaseMySQL.h
DatabasePostgreSQL.h
Encryption.h
EQCryptoAPI.h
ErrorLog.h
LoginServer.h
LoginStructures.h
Options.h
ServerManager.h
WorldServer.h
client.h
client_manager.h
config.h
database.h
database_mysql.h
database_postgresql.h
encryption.h
eq_crypto_api.h
error_log.h
login_server.h
login_structures.h
options.h
server_manager.h
world_server.h
)
IF(UNIX)

View File

@ -15,10 +15,10 @@
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "Client.h"
#include "ErrorLog.h"
#include "LoginServer.h"
#include "LoginStructures.h"
#include "client.h"
#include "error_log.h"
#include "login_server.h"
#include "login_structures.h"
#include "../common/misc_functions.h"
extern ErrorLog *server_log;

View File

@ -23,7 +23,7 @@
#include "../common/eq_stream_type.h"
#include "../common/eq_stream_factory.h"
#ifndef WIN32
#include "EQCryptoAPI.h"
#include "eq_crypto_api.h"
#endif
#include <string>

View File

@ -15,9 +15,9 @@
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "ClientManager.h"
#include "ErrorLog.h"
#include "LoginServer.h"
#include "client_manager.h"
#include "error_log.h"
#include "login_server.h"
extern ErrorLog *server_log;
extern LoginServer server;

View File

@ -22,7 +22,7 @@
#include "../common/opcodemgr.h"
#include "../common/eq_stream_type.h"
#include "../common/eq_stream_factory.h"
#include "Client.h"
#include "client.h"
#include <list>
using namespace std;

View File

@ -16,8 +16,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "../common/debug.h"
#include "Config.h"
#include "ErrorLog.h"
#include "config.h"
#include "error_log.h"
extern ErrorLog *server_log;
/**

View File

@ -16,12 +16,12 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "../common/debug.h"
#include "Database.h"
#include "database.h"
#ifdef EQEMU_MYSQL_ENABLED
#include "DatabaseMySQL.h"
#include "ErrorLog.h"
#include "LoginServer.h"
#include "database_mysql.h"
#include "error_log.h"
#include "login_server.h"
extern ErrorLog *server_log;
extern LoginServer server;

View File

@ -18,7 +18,7 @@
#ifndef EQEMU_DATABASEMYSQL_H
#define EQEMU_DATABASEMYSQL_H
#include "Database.h"
#include "database.h"
#ifdef EQEMU_MYSQL_ENABLED
#include <string>

View File

@ -16,12 +16,12 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "../common/debug.h"
#include "Database.h"
#include "database.h"
#ifdef EQEMU_POSTGRESQL_ENABLED
#include "DatabasePostgreSQL.h"
#include "ErrorLog.h"
#include "LoginServer.h"
#include "database_postgresql.h"
#include "error_log.h"
#include "login_server.h"
extern ErrorLog *server_log;
extern LoginServer server;

View File

@ -18,7 +18,7 @@
#ifndef EQEMU_DATABASEPOSTGRESQL_H
#define EQEMU_DATABASEPOSTGRESQL_H
#include "Database.h"
#include "database.h"
#ifdef EQEMU_POSTGRESQL_ENABLED
#include <string>

View File

@ -16,8 +16,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "../common/debug.h"
#include "Encryption.h"
#include "ErrorLog.h"
#include "encryption.h"
#include "error_log.h"
#include <string>
extern ErrorLog *server_log;

View File

@ -16,7 +16,7 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include <string.h>
#include "ErrorLog.h"
#include "error_log.h"
const char *eqLogTypes[_log_largest_type] =
{

View File

@ -18,15 +18,15 @@
#ifndef EQEMU_LOGINSERVER_H
#define EQEMU_LOGINSERVER_H
#include "ErrorLog.h"
#include "Config.h"
#include "Database.h"
#include "DatabaseMySQL.h"
#include "DatabasePostgreSQL.h"
#include "Encryption.h"
#include "Options.h"
#include "ServerManager.h"
#include "ClientManager.h"
#include "error_log.h"
#include "config.h"
#include "database.h"
#include "database_mysql.h"
#include "database_postgresql.h"
#include "encryption.h"
#include "options.h"
#include "server_manager.h"
#include "client_manager.h"
/**
* Login server struct, contains every variable for the server that needs to exist

View File

@ -22,7 +22,7 @@
#include "../common/timer.h"
#include "../common/platform.h"
#include "../common/crash.h"
#include "LoginServer.h"
#include "login_server.h"
#include <time.h>
#include <stdlib.h>
#include <string>

View File

@ -15,10 +15,10 @@
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "ServerManager.h"
#include "LoginServer.h"
#include "ErrorLog.h"
#include "LoginStructures.h"
#include "server_manager.h"
#include "login_server.h"
#include "error_log.h"
#include "login_structures.h"
#include <stdlib.h>
extern ErrorLog *server_log;

View File

@ -24,8 +24,8 @@
#include "../common/emu_tcp_server.h"
#include "../common/servertalk.h"
#include "../common/packet_dump.h"
#include "WorldServer.h"
#include "Client.h"
#include "world_server.h"
#include "client.h"
#include <list>
/**

View File

@ -15,10 +15,10 @@
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "WorldServer.h"
#include "ErrorLog.h"
#include "LoginServer.h"
#include "LoginStructures.h"
#include "world_server.h"
#include "error_log.h"
#include "login_server.h"
#include "login_structures.h"
extern ErrorLog *server_log;
extern LoginServer server;