123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- #ifndef _APP_MESSAGES_H
- #define _APP_MESSAGES_H
- const uint32 APP_SHOW_SETTINGS = 'RPST';
- const uint32 APP_SHOW_ACCOUNTS = 'RPac';
- const uint32 APP_CHAT = 'CYch';
- const uint32 APP_NEW_CHAT = 'CYnc';
- const uint32 APP_NEW_ROOM = 'CYnr';
- const uint32 APP_JOIN_ROOM = 'CYjr';
- const uint32 APP_SEND_INVITE = 'CYin';
- const uint32 APP_REPLICANT_MESSENGER = 'RPme';
- const uint32 APP_REPLICANT_STATUS_SET = 'RPMS';
- const uint32 APP_REPLICANT_EXIT = 'RPEX';
- const uint32 APP_REPLICANT_SHOW_WINDOW = 'CYSW';
- const uint32 APP_MOVE_UP = 'CYmu';
- const uint32 APP_MOVE_DOWN = 'CYmd';
- const uint32 APP_ACCOUNT_DISABLED = 'Axwo';
- const uint32 APP_ACCOUNT_FAILED = 'Axwx';
- const uint32 APP_REQUEST_HELP = 'CYhm';
- const uint32 APP_USER_INFO = 'CYuw';
- const uint32 APP_ROOM_INFO = 'CYrw';
- const uint32 APP_ROOM_FLAG = 'Rlag';
- const uint32 APP_EDIT_ROSTER = 'CYer';
- const uint32 APP_EDIT_ACCOUNT = 'CYea';
- const uint32 APP_TOGGLE_ACCOUNT = 'CYta';
- #endif // _APP_MESSAGES_H
|