00001 #ifndef MESSAGEIDS_H 00002 #define MESSAGEIDS_H 00003 00004 #define SERVER_LISTEN_PORT 7997 00005 00006 typedef enum { 00007 MSG_LOGIN = 0, 00008 MSG_LOGIN_OK, 00009 MSG_LOGIN_FAIL, 00010 MSG_CLIENT_LOGOFF, 00011 MSG_SERVER_DOWN, 00012 MSG_LOAD_PLAYER, 00013 MSG_CREATE_PLAYER 00014 } _tMessageIDs; 00015 00016 typedef enum { 00017 NOT_CONNECTED = 0, 00018 TRYING_CON, 00019 CONNECTED 00020 } _tConStates; 00021 00022 00023 00024 #endif