diff options
author | Haruna <haru@dotalux.com> | 2014-04-19 22:37:54 +0200 |
---|---|---|
committer | Haruna <haru@dotalux.com> | 2014-04-19 22:37:54 +0200 |
commit | 93584f7416164985220293b7c08fcc29c4d5060f (patch) | |
tree | 2f2f533682e54dfe501ff4a470953e3a6bd2462f /src/char/inter.h | |
parent | cebfdc692ef4a5897c69304f88e585f8f1272c7e (diff) | |
parent | dd49dbc3e8d2033c0dddc80f1d5b3c8e6710a419 (diff) | |
download | hercules-93584f7416164985220293b7c08fcc29c4d5060f.tar.gz hercules-93584f7416164985220293b7c08fcc29c4d5060f.tar.bz2 hercules-93584f7416164985220293b7c08fcc29c4d5060f.tar.xz hercules-93584f7416164985220293b7c08fcc29c4d5060f.zip |
Merge pull request #272 from hemagx/master
Rewritten NSI_UNIQUE_ID system
Diffstat (limited to 'src/char/inter.h')
-rw-r--r-- | src/char/inter.h | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/src/char/inter.h b/src/char/inter.h index b484a1610..25b0c2a96 100644 --- a/src/char/inter.h +++ b/src/char/inter.h @@ -29,17 +29,4 @@ extern Sql* lsql_handle; int inter_accreg_tosql(int account_id, int char_id, struct accreg *reg, int type); -uint64 inter_chk_lastuid(int8 flag, uint64 value); -#ifdef NSI_UNIQUE_ID - #define updateLastUid(val_) inter_chk_lastuid(1, (val_)) - #define dbUpdateUid(handler_) do { \ - uint64 unique_id_ = inter_chk_lastuid(0, 0); \ - if (unique_id_ && SQL_ERROR == SQL->Query((handler_), "UPDATE `%s` SET `value`='%"PRIu64"' WHERE `varname`='unique_id'", interreg_db, unique_id_)) \ - Sql_ShowDebug(handler_);\ - } while(0) -#else - #define dbUpdateUid(handler_) - #define updateLastUid(val_) -#endif - #endif /* _CHAR_INTER_H_ */ |