diff options
author | Ben Longbons <b.r.longbons@gmail.com> | 2012-12-27 21:23:46 -0800 |
---|---|---|
committer | Ben Longbons <b.r.longbons@gmail.com> | 2013-01-07 15:31:38 -0800 |
commit | c080e504e4d74027b985b1ed675c172c083cea76 (patch) | |
tree | ac084d16d9d40c0a0c950b66eb62a0e16795d486 /src/map/intif.hpp | |
parent | ae30173d71d3bfc8514dbe70b6c90c9a3324b8fc (diff) | |
download | tmwa-c080e504e4d74027b985b1ed675c172c083cea76.tar.gz tmwa-c080e504e4d74027b985b1ed675c172c083cea76.tar.bz2 tmwa-c080e504e4d74027b985b1ed675c172c083cea76.tar.xz tmwa-c080e504e4d74027b985b1ed675c172c083cea76.zip |
Use cxxstdio
Diffstat (limited to 'src/map/intif.hpp')
-rw-r--r-- | src/map/intif.hpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/map/intif.hpp b/src/map/intif.hpp index 720c7cd..7a03483 100644 --- a/src/map/intif.hpp +++ b/src/map/intif.hpp @@ -1,9 +1,11 @@ #ifndef INTIF_HPP #define INTIF_HPP +#include "../common/const_array.hpp" + int intif_parse(int fd); -int intif_GMmessage(const char *mes, int len, int flag); +void intif_GMmessage(const_string mes, int flag); int intif_wis_message(struct map_session_data *sd, const char *nick, const char *mes, int mes_len); |