diff options
author | ultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-10-18 12:49:49 +0000 |
---|---|---|
committer | ultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-10-18 12:49:49 +0000 |
commit | f20c6c19cda1c672ed93836ddd33ce8e08e104c9 (patch) | |
tree | 2191cdf38dc908565a7cc5e63c43cc627bdfd2bb /src/map/intif.h | |
parent | c6ea185bd9ca1c3fdf7a18c4bf1e0b1150fffed5 (diff) | |
download | hercules-f20c6c19cda1c672ed93836ddd33ce8e08e104c9.tar.gz hercules-f20c6c19cda1c672ed93836ddd33ce8e08e104c9.tar.bz2 hercules-f20c6c19cda1c672ed93836ddd33ce8e08e104c9.tar.xz hercules-f20c6c19cda1c672ed93836ddd33ce8e08e104c9.zip |
* Removed commented-out code for check_fake_id()
* Merged improved/cleaned up (WiP) code for clif_parse_WisMessage
* Removed the requirement to provide a character name in the message string when calling is_atcommand() (needed for the previous fix)
- currently both ways work, but old will be removed in the upcoming command cleanup so please adjust your custom code if you use this!
* Added clif_process_message(), an unified way to validate all four types of player message packets and retrieve their components
* Applied the new checking function to clif code, this fixes various length mismatches caused by incomplete code in r11386 (bugreport:198)
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@11507 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/intif.h')
-rw-r--r-- | src/map/intif.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/map/intif.h b/src/map/intif.h index 7f7cfb392..5487d5725 100644 --- a/src/map/intif.h +++ b/src/map/intif.h @@ -36,7 +36,7 @@ int intif_party_changeoption(int party_id, int account_id, int exp, int item); int intif_party_leave(int party_id,int account_id, int char_id); int intif_party_changemap(struct map_session_data *sd, int online); int intif_break_party(int party_id); -int intif_party_message(int party_id, int account_id, char *mes,int len); +int intif_party_message(int party_id, int account_id, const char *mes,int len); int intif_party_checkconflict(int party_id,int account_id,int char_id); int intif_party_leaderchange(int party_id,int account_id,int char_id); @@ -47,7 +47,7 @@ int intif_guild_addmember(int guild_id, struct guild_member *m); int intif_guild_leave(int guild_id, int account_id, int char_id, int flag, const char *mes); int intif_guild_memberinfoshort(int guild_id, int account_id, int char_id, int online, int lv, int class_); int intif_guild_break(int guild_id); -int intif_guild_message(int guild_id, int account_id, char *mes, int len); +int intif_guild_message(int guild_id, int account_id, const char *mes, int len); int intif_guild_checkconflict(int guild_id, int account_id, int char_id); int intif_guild_change_gm(int guild_id, const char* name, int len); int intif_guild_change_basicinfo(int guild_id, int type, const void *data, int len); |