mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-13 10:31:29 +00:00
* MYSQL objects cannot be copied in a well defined way, this removes the copy and replaces it with another connection * Change to share underlying pointers. * Push up mutex changes * Post rebase * Formatting --------- Co-authored-by: KimLS <KimLS@peqtgc.com> Co-authored-by: Akkadius <akkadius1@gmail.com>
23 lines
672 B
C++
23 lines
672 B
C++
#ifndef EQEMU_WORLD_BOOT_H
|
|
#define EQEMU_WORLD_BOOT_H
|
|
|
|
#include <string>
|
|
#include "../common/types.h"
|
|
|
|
class WorldBoot {
|
|
public:
|
|
static void GMSayHookCallBackProcessWorld(uint16 log_category, const char *func, std::string message);
|
|
static bool HandleCommandInput(int argc, char **argv);
|
|
static bool LoadServerConfig();
|
|
static bool LoadDatabaseConnections();
|
|
static void CheckForServerScript(bool force_download = false);
|
|
static void CheckForXMLConfigUpgrade();
|
|
static void RegisterLoginservers();
|
|
static bool DatabaseLoadRoutines(int argc, char **argv);
|
|
static void CheckForPossibleConfigurationIssues();
|
|
static void Shutdown();
|
|
};
|
|
|
|
|
|
#endif //EQEMU_WORLD_BOOT_H
|