diff options
author | Matheus Macabu <mkbu95@gmail.com> | 2013-07-03 03:53:14 -0300 |
---|---|---|
committer | Matheus Macabu <mkbu95@gmail.com> | 2013-07-03 03:53:14 -0300 |
commit | 5479f9631f8579d03fbfd14d8a49c7976226a156 (patch) | |
tree | 554f0f90dd0518a72e8fdea7e4207697c9481551 /src/login/account.h | |
parent | 0b2fc3888b9d09b397a829db4af3f8d35cdaabb9 (diff) | |
download | hercules-5479f9631f8579d03fbfd14d8a49c7976226a156.tar.gz hercules-5479f9631f8579d03fbfd14d8a49c7976226a156.tar.bz2 hercules-5479f9631f8579d03fbfd14d8a49c7976226a156.tar.xz hercules-5479f9631f8579d03fbfd14d8a49c7976226a156.zip |
Dropped engine setting, closing bug #7455.
Signed-off-by: Matheus Macabu <mkbu95@gmail.com>
Diffstat (limited to 'src/login/account.h')
-rw-r--r-- | src/login/account.h | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/src/login/account.h b/src/login/account.h index be5bad988..999c93075 100644 --- a/src/login/account.h +++ b/src/login/account.h @@ -14,26 +14,6 @@ typedef struct AccountDBIterator AccountDBIterator; // standard engines AccountDB* account_db_sql(void); -// extra engines (will probably use the other txt functions) -#define ACCOUNTDB_CONSTRUCTOR_(engine) account_db_##engine -#define ACCOUNTDB_CONSTRUCTOR(engine) ACCOUNTDB_CONSTRUCTOR_(engine) -#ifdef ACCOUNTDB_ENGINE_0 -AccountDB* ACCOUNTDB_CONSTRUCTOR(ACCOUNTDB_ENGINE_0)(void); -#endif -#ifdef ACCOUNTDB_ENGINE_1 -AccountDB* ACCOUNTDB_CONSTRUCTOR(ACCOUNTDB_ENGINE_1)(void); -#endif -#ifdef ACCOUNTDB_ENGINE_2 -AccountDB* ACCOUNTDB_CONSTRUCTOR(ACCOUNTDB_ENGINE_2)(void); -#endif -#ifdef ACCOUNTDB_ENGINE_3 -AccountDB* ACCOUNTDB_CONSTRUCTOR(ACCOUNTDB_ENGINE_3)(void); -#endif -#ifdef ACCOUNTDB_ENGINE_4 -AccountDB* ACCOUNTDB_CONSTRUCTOR(ACCOUNTDB_ENGINE_4)(void); -#endif - - struct mmo_account { int account_id; |