diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-11-28 15:41:01 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-11-28 15:42:39 +0300 |
commit | 905642f167858017e1fa1582f6253da3c9a8ff97 (patch) | |
tree | 792d0cd12bab53cb03addb634ec0baa1cc2171ea /src/map/clif.h | |
parent | 1ea90a6de5d0dc506b4be96ded4fe50e27df7e2b (diff) | |
download | evol-hercules-905642f167858017e1fa1582f6253da3c9a8ff97.tar.gz evol-hercules-905642f167858017e1fa1582f6253da3c9a8ff97.tar.bz2 evol-hercules-905642f167858017e1fa1582f6253da3c9a8ff97.tar.xz evol-hercules-905642f167858017e1fa1582f6253da3c9a8ff97.zip |
Send map mask to clients.
Diffstat (limited to 'src/map/clif.h')
-rw-r--r-- | src/map/clif.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/map/clif.h b/src/map/clif.h index 3180919..0699601 100644 --- a/src/map/clif.h +++ b/src/map/clif.h @@ -8,11 +8,14 @@ void eclif_quest_send_list(struct map_session_data *sd); void eclif_quest_add(struct map_session_data *sd, struct quest *qd); void eclif_charnameack(int *fdPtr, struct block_list *bl); void eclif_getareachar_unit_post(struct map_session_data* sd, struct block_list *bl); -void eclif_authok_post(struct map_session_data *sd); void eclif_sendlook(struct block_list *bl, int *id, int *type, int *val, int *val2, enum send_target *target); bool eclif_send(const void* buf, int *len, struct block_list* bl, enum send_target *type); void eclif_set_unit_idle(struct block_list* bl, struct map_session_data *tsd, enum send_target *target); +int eclif_send_actual(int *fd, void *buf, int *len); + +void eclif_authok_post(struct map_session_data *sd); +void eclif_changemap_post(struct map_session_data *sd, short *m, int *x, int *y); #endif // EVOL_MAP_CLIF |