diff options
author | Haru <haru@dotalux.com> | 2019-03-11 03:48:54 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-11 03:48:54 +0100 |
commit | 23b515f67f912078268767ec2d28b65711d39b2f (patch) | |
tree | ca7ef86914fd19a7fba137feb8daf668d6411b63 /src/map/atcommand.h | |
parent | c2bf96805ea5fdbd8d88bb1ddaf9f0e47a24fd08 (diff) | |
parent | 63062f9ddbc2c2a2384bfbbd496fc0572318a9e0 (diff) | |
download | hercules-23b515f67f912078268767ec2d28b65711d39b2f.tar.gz hercules-23b515f67f912078268767ec2d28b65711d39b2f.tar.bz2 hercules-23b515f67f912078268767ec2d28b65711d39b2f.tar.xz hercules-23b515f67f912078268767ec2d28b65711d39b2f.zip |
Merge pull request #2378 from 4144/interfaces
Different interfaces fixes
Diffstat (limited to 'src/map/atcommand.h')
-rw-r--r-- | src/map/atcommand.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/map/atcommand.h b/src/map/atcommand.h index 3bbbefa20..1783e5dc6 100644 --- a/src/map/atcommand.h +++ b/src/map/atcommand.h @@ -21,9 +21,11 @@ #ifndef MAP_ATCOMMAND_H #define MAP_ATCOMMAND_H +#include "map/mapdefines.h" #include "map/pc_groups.h" #include "common/hercules.h" #include "common/db.h" +#include "common/mmo.h" #include <stdarg.h> @@ -90,6 +92,8 @@ struct atcmd_binding_data { * Interface **/ struct atcommand_interface { + char (*atcmd_output)[CHAT_SIZE_MAX]; + char (*atcmd_player_name)[NAME_LENGTH]; unsigned char at_symbol; unsigned char char_symbol; /* atcommand binding */ |