diff options
-rw-r--r-- | src/map/log.h | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/src/map/log.h b/src/map/log.h index 72804009e..2b3d82e14 100644 --- a/src/map/log.h +++ b/src/map/log.h @@ -21,21 +21,6 @@ typedef enum e_log_chat_type e_log_chat_type; -//New logs -void log_pick_pc(struct map_session_data *sd, const char *type, int nameid, int amount, struct item *itm); -void log_pick_mob(struct mob_data *md, const char *type, int nameid, int amount, struct item *itm); -void log_zeny(struct map_session_data *sd, char *type, struct map_session_data *src_sd, int amount); - -void log_npc(struct map_session_data *sd, const char *message); -void log_chat(e_log_chat_type type, int type_id, int src_charid, int src_accid, const char* map, int x, int y, const char* dst_charname, const char* message); -void log_atcommand(struct map_session_data *sd, const char *message); - -//Old, but useful logs -void log_branch(struct map_session_data *sd); -void log_mvpdrop(struct map_session_data *sd, int monster_id, int *log_mvp); - -int log_config_read(char *cfgName); - typedef enum log_what { LOG_ALL = 0xFFFF, @@ -57,6 +42,21 @@ typedef enum log_what log_what; +//New logs +void log_pick_pc(struct map_session_data *sd, const char *type, int nameid, int amount, struct item *itm); +void log_pick_mob(struct mob_data *md, const char *type, int nameid, int amount, struct item *itm); +void log_zeny(struct map_session_data *sd, char *type, struct map_session_data *src_sd, int amount); + +void log_npc(struct map_session_data *sd, const char *message); +void log_chat(e_log_chat_type type, int type_id, int src_charid, int src_accid, const char* map, int x, int y, const char* dst_charname, const char* message); +void log_atcommand(struct map_session_data *sd, const char *message); + +//Old, but useful logs +void log_branch(struct map_session_data *sd); +void log_mvpdrop(struct map_session_data *sd, int monster_id, int *log_mvp); + +int log_config_read(char *cfgName); + extern struct Log_Config { enum log_what enable_logs; |