summaryrefslogtreecommitdiff
path: root/src/map/send.h
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2015-03-05 22:23:12 +0300
committerAndrei Karas <akaras@inbox.ru>2015-03-05 22:26:06 +0300
commit6b230a4de27de394dd4e28662cd27070ab91c1f1 (patch)
tree58dba9c128bb7eb480472dd42d5e6b44401b74e3 /src/map/send.h
parentdb82d35cb549aa305df53c4f0cbe5149062161e3 (diff)
downloadevol-hercules-6b230a4de27de394dd4e28662cd27070ab91c1f1.tar.gz
evol-hercules-6b230a4de27de394dd4e28662cd27070ab91c1f1.tar.bz2
evol-hercules-6b230a4de27de394dd4e28662cd27070ab91c1f1.tar.xz
evol-hercules-6b230a4de27de394dd4e28662cd27070ab91c1f1.zip
Replace struct map_session_data to TBL_PC.
Diffstat (limited to 'src/map/send.h')
-rw-r--r--src/map/send.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/map/send.h b/src/map/send.h
index 74f3e05..ae9f305 100644
--- a/src/map/send.h
+++ b/src/map/send.h
@@ -4,8 +4,8 @@
#ifndef EVOL_MAP_PC
#define EVOL_MAP_PC
-void send_npccommand (struct map_session_data *sd, int npcId, int cmd);
-void send_npccommand2 (struct map_session_data *sd, int npcId, int cmd, int id, int x, int y);
+void send_npccommand (TBL_PC *sd, int npcId, int cmd);
+void send_npccommand2 (TBL_PC *sd, int npcId, int cmd, int id, int x, int y);
void send_local_message(int fd, struct block_list* bl, const char* msg);
void send_changelook(int fd, int id, int type, int val);
void send_mapmask(int fd, int mask);
@@ -13,7 +13,7 @@ void send_mapmask_brodcast(const int map, const int mask);
void send_mob_info(struct block_list* bl1, struct block_list* bl2, enum send_target target);
void send_advmoving(struct unit_data* ud, struct block_list *tbl, enum send_target target);
void send_changemusic_brodcast(const int map, const char *music);
-void send_changenpc_title (struct map_session_data *sd, const int npcId, const char *name);
+void send_changenpc_title (TBL_PC *sd, const int npcId, const char *name);
void send_join_ack(int fd, const char *const name, int flag);
void send_pc_info(struct block_list* bl1,
struct block_list* bl2,
@@ -21,7 +21,7 @@ void send_pc_info(struct block_list* bl1,
void send_npc_info(struct block_list* bl1,
struct block_list* bl2,
enum send_target target);
-void send_slave_say(struct map_session_data *sd,
+void send_slave_say(TBL_PC *sd,
struct block_list *bl,
const char *const name,
const char *const message);