Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021 #ifndef MULTIPLAYER_ERROR_CODES_HPP_INCLUDED
00022 #define MULTIPLAYER_ERROR_CODES_HPP_INCLUDED
00023
00024 #define MP_MUST_LOGIN "100"
00025 #define MP_NAME_TAKEN_ERROR "101"
00026 #define MP_INVALID_CHARS_IN_NAME_ERROR "102"
00027 #define MP_NAME_TOO_LONG_ERROR "103"
00028 #define MP_NAME_RESERVED_ERROR "104"
00029 #define MP_NAME_UNREGISTERED_ERROR "105"
00030 #define MP_NAME_INACTIVE_WARNING "106"
00031
00032 #define MP_PASSWORD_REQUEST "200"
00033 #define MP_PASSWORD_REQUEST_FOR_LOGGED_IN_NAME "201"
00034 #define MP_NO_SEED_ERROR "202"
00035 #define MP_INCORRECT_PASSWORD_ERROR "203"
00036 #define MP_TOO_MANY_ATTEMPTS_ERROR "204"
00037
00038 #endif // MULTIPLAYER_ERROR_CODES_HPP_INCLUDES
00039
00040
00041