Adding callback if user is blocked by the server.

This commit is contained in:
lotodore
2010-07-14 14:30:16 +00:00
parent c25c52250d
commit 18613a2cb5
4 changed files with 16 additions and 1 deletions
+3 -1
View File
@@ -22,16 +22,18 @@
#define _DBDEFS_H_
#include <string>
#include <ctime>
typedef unsigned DB_id;
#define DB_ID_INVALID 0
struct DBPlayerData
{
DBPlayerData() : id(DB_ID_INVALID), last_login(0) {}
DB_id id;
std::string secret;
std::string country;
std::string last_login;
time_t last_login;
};
#endif