summaryrefslogtreecommitdiff
path: root/src/defines.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/defines.h')
-rw-r--r--src/defines.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/defines.h b/src/defines.h
index d4c0e880..35c05363 100644
--- a/src/defines.h
+++ b/src/defines.h
@@ -70,6 +70,7 @@ enum {
SMSG_CHAR_CREATE_RESPONSE = 0x0021,
CMSG_CHAR_LIST = 0x0022, // this is required after char creation
CMSG_CHAR_SELECT = 0x0023,
+ SMSG_CHAR_SELECT_RESPONSE = 0x0034,
// Objects
SMSG_NEW_OBJECT = 0x0100,
@@ -135,5 +136,11 @@ enum {
CREATE_NOLOGIN
};
+// Character selection return values
+enum {
+ SELECT_OK = 0,
+ SELECT_INVALID
+};
+
#endif // _TMWSERV_DEFINES_H_