06.09.2017, 07:13
They are ...
Код:
#define ACCOUNT_MAX_NAME_SIZE 24 #define ACCOUNT_MAX_PASSWORD_SIZE 72 #define ACCOUNT_MAX_SALT_SIZE 72 #define ACCOUNT_MAX_EMAIL_SIZE 72 #define ACCOUNT_MAX_IP_SIZE 16
Код:
enum eSafeData { eID, eName[ACCOUNT_MAX_NAME_SIZE], ePassword[ACCOUNT_MAX_PASSWORD_SIZE], eSalt[ACCOUNT_MAX_SALT_SIZE], eEmail[ACCOUNT_MAX_EMAIL_SIZE] }; new SafeData[MAX_PLAYERS][eSafeData];