From 83db3bbee4e19e7426a32ee89ad6c2d8e48260f2 Mon Sep 17 00:00:00 2001 From: Ben Longbons Date: Tue, 18 Jun 2013 20:03:57 -0700 Subject: Also poison memcpy, memmove, and memset --- src/map/clif.hpp | 25 ++++++++++++------------- 1 file changed, 12 insertions(+), 13 deletions(-) (limited to 'src/map/clif.hpp') diff --git a/src/map/clif.hpp b/src/map/clif.hpp index 5240fa1..5d48bc5 100644 --- a/src/map/clif.hpp +++ b/src/map/clif.hpp @@ -28,7 +28,7 @@ int clif_dropflooritem(dumb_ptr); int clif_clearflooritem(dumb_ptr, int); int clif_clearchar(dumb_ptr, BeingRemoveWhy); // area or fd int clif_clearchar_delay(tick_t, dumb_ptr, BeingRemoveWhy); -int clif_clearchar_id(int, BeingRemoveWhy, int); +void clif_clearchar_id(int, BeingRemoveWhy, int); int clif_spawnpc(dumb_ptr); //area int clif_spawnnpc(dumb_ptr); // area int clif_spawn_fake_npc_for_player(dumb_ptr sd, @@ -37,9 +37,9 @@ int clif_spawnmob(dumb_ptr); // area int clif_walkok(dumb_ptr); // self int clif_movechar(dumb_ptr); // area int clif_movemob(dumb_ptr); //area -int clif_changemap(dumb_ptr, const char *, int, int); //self -int clif_changemapserver(dumb_ptr, const char *, int, int, struct in_addr, int); //self -int clif_fixpos(dumb_ptr); // area +void clif_changemap(dumb_ptr, const char *, int, int); //self +void clif_changemapserver(dumb_ptr, const char *, int, int, struct in_addr, int); //self +void clif_fixpos(dumb_ptr); // area int clif_fixmobpos(dumb_ptr md); int clif_fixpcpos(dumb_ptr sd); int clif_npcbuysell(dumb_ptr, int); //self @@ -51,7 +51,6 @@ int clif_scriptclose(dumb_ptr, int); //self int clif_scriptmenu(dumb_ptr, int, const char *); //self int clif_scriptinput(dumb_ptr, int); //self int clif_scriptinputstr(dumb_ptr sd, int npcid); // self -int clif_cutin(dumb_ptr, const char *, int); //self int clif_viewpoint(dumb_ptr, int, int, int, int, int, int); //self int clif_additem(dumb_ptr, int, int, PickupFail); //self int clif_delitem(dumb_ptr, int, int); //self @@ -109,7 +108,7 @@ void clif_moboutsight(dumb_ptr, dumb_ptr); int clif_skillinfo(dumb_ptr sd, SkillID skillid, int type, int range); -int clif_skillinfoblock(dumb_ptr sd); +void clif_skillinfoblock(dumb_ptr sd); int clif_skillup(dumb_ptr sd, SkillID skill_num); int clif_skillcastcancel(dumb_ptr bl); @@ -122,8 +121,8 @@ int clif_skill_damage(dumb_ptr src, dumb_ptr dst, int clif_status_change(dumb_ptr bl, StatusChange type, int flag); -int clif_wis_message(int fd, const char *nick, const char *mes, int mes_len); -int clif_wis_end(int fd, int flag); +void clif_wis_message(int fd, const char *nick, const char *mes); +void clif_wis_end(int fd, int flag); int clif_itemlist(dumb_ptr sd); int clif_equiplist(dumb_ptr sd); @@ -135,24 +134,24 @@ int clif_movetoattack(dumb_ptr sd, dumb_ptr bl); // party int clif_party_created(dumb_ptr sd, int flag); int clif_party_info(struct party *p, int fd); -int clif_party_invite(dumb_ptr sd, +void clif_party_invite(dumb_ptr sd, dumb_ptr tsd); int clif_party_inviteack(dumb_ptr sd, const char *nick, int flag); -int clif_party_option(struct party *p, dumb_ptr sd, +void clif_party_option(struct party *p, dumb_ptr sd, int flag); int clif_party_leaved(struct party *p, dumb_ptr sd, int account_id, const char *name, int flag); -int clif_party_message(struct party *p, int account_id, const char *mes, int len); +void clif_party_message(struct party *p, int account_id, const char *mes); int clif_party_xy(struct party *p, dumb_ptr sd); int clif_party_hp(struct party *p, dumb_ptr sd); // atcommand void clif_displaymessage(int fd, const_string mes); void clif_GMmessage(dumb_ptr bl, const_string mes, int flag); -int clif_resurrection(dumb_ptr bl, int type); +void clif_resurrection(dumb_ptr bl, int type); int clif_specialeffect(dumb_ptr bl, int type, int flag); // special effects [Valaris] -int clif_message(dumb_ptr bl, const char *msg); // messages (from mobs/npcs) [Valaris] +void clif_message(dumb_ptr bl, const char *msg); // messages (from mobs/npcs) [Valaris] int clif_GM_kick(dumb_ptr sd, dumb_ptr tsd, int type); -- cgit v1.2.3-70-g09d2