diff options
Diffstat (limited to 'src/char/inter.h')
-rw-r--r-- | src/char/inter.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/char/inter.h b/src/char/inter.h index ac2e1785f..e5bfa1572 100644 --- a/src/char/inter.h +++ b/src/char/inter.h @@ -27,4 +27,18 @@ extern char main_chat_nick[16]; 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_)\ + { \ + uint64 nsiuid_ = inter_chk_lastuid(0, 0); \ + if (nsiuid_ && SQL_ERROR == Sql_Query(handler_, "UPDATE `interreg` SET `value`='%"PRIu64"' WHERE `varname`='nsiuid'", nsiuid_)) \ + Sql_ShowDebug(handler_);\ + } +#else + #define dbUpdateUid(handler_) + #define updateLastUid(val_) +#endif + #endif /* _INTER_SQL_H_ */ |