diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-09-01 22:02:39 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-09-01 22:02:39 +0300 |
commit | 211787e349e0249fc032b3b51f8649af613f5ecf (patch) | |
tree | 71e67c6b58ecf836f47f836c9625e2bcae2a7db9 /src/emap/clif.h | |
parent | 4f35fa5d10ba0a30157205227f25aed6da67f4e1 (diff) | |
download | plugin-211787e349e0249fc032b3b51f8649af613f5ecf.tar.gz plugin-211787e349e0249fc032b3b51f8649af613f5ecf.tar.bz2 plugin-211787e349e0249fc032b3b51f8649af613f5ecf.tar.xz plugin-211787e349e0249fc032b3b51f8649af613f5ecf.zip |
Add hack for avoid npc_str buffer size limitation.
Now for npc_str used global variable. And it cant be used in any functions
except input related buildins.
Diffstat (limited to 'src/emap/clif.h')
-rw-r--r-- | src/emap/clif.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/emap/clif.h b/src/emap/clif.h index 4838dc6..1353cc7 100644 --- a/src/emap/clif.h +++ b/src/emap/clif.h @@ -103,4 +103,6 @@ void eclif_parse_WalkToXY(int fd, struct map_session_data *sd) __attribute__((nonnull (2))); void eclif_party_info_post(struct party_data *p, struct map_session_data *sd); +void eclif_parse_NpcStringInput(int fd, + struct map_session_data* sd) __attribute__((nonnull (2))); #endif // EVOL_MAP_CLIF |