diff options
author | Haru <haru@dotalux.com> | 2018-07-06 23:26:02 +0200 |
---|---|---|
committer | Haru <haru@dotalux.com> | 2018-07-06 23:26:02 +0200 |
commit | b03d9630d877c2ea9e3197e5e22985bac58c82e9 (patch) | |
tree | 6473aa2be727ada7cca6647cc229e4fce95108a4 /src/plugins/HPMHooking/HPMHooking.Defs.inc | |
parent | 6c99adb0b3de4677fdcc28d636aeaa618ce04bb1 (diff) | |
download | hercules-b03d9630d877c2ea9e3197e5e22985bac58c82e9.tar.gz hercules-b03d9630d877c2ea9e3197e5e22985bac58c82e9.tar.bz2 hercules-b03d9630d877c2ea9e3197e5e22985bac58c82e9.tar.xz hercules-b03d9630d877c2ea9e3197e5e22985bac58c82e9.zip |
HPM Hooks Update
Signed-off-by: Haru <haru@dotalux.com>
Diffstat (limited to 'src/plugins/HPMHooking/HPMHooking.Defs.inc')
-rw-r--r-- | src/plugins/HPMHooking/HPMHooking.Defs.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/HPMHooking/HPMHooking.Defs.inc b/src/plugins/HPMHooking/HPMHooking.Defs.inc index cb1ce11fb..691401277 100644 --- a/src/plugins/HPMHooking/HPMHooking.Defs.inc +++ b/src/plugins/HPMHooking/HPMHooking.Defs.inc @@ -3080,8 +3080,8 @@ typedef int (*HPMHOOK_pre_inter_guild_broken) (int *guild_id); typedef int (*HPMHOOK_post_inter_guild_broken) (int retVal___, int guild_id); typedef struct guild* (*HPMHOOK_pre_inter_guild_create) (const char **name, const struct guild_member **master); typedef struct guild* (*HPMHOOK_post_inter_guild_create) (struct guild* retVal___, const char *name, const struct guild_member *master); -typedef bool (*HPMHOOK_pre_inter_guild_add_member) (int *guild_id, const struct guild_member **member); -typedef bool (*HPMHOOK_post_inter_guild_add_member) (bool retVal___, int guild_id, const struct guild_member *member); +typedef bool (*HPMHOOK_pre_inter_guild_add_member) (int *guild_id, const struct guild_member **member, int *map_fd); +typedef bool (*HPMHOOK_post_inter_guild_add_member) (bool retVal___, int guild_id, const struct guild_member *member, int map_fd); typedef bool (*HPMHOOK_pre_inter_guild_leave) (int *guild_id, int *account_id, int *char_id, int *flag, const char **mes, int *map_fd); typedef bool (*HPMHOOK_post_inter_guild_leave) (bool retVal___, int guild_id, int account_id, int char_id, int flag, const char *mes, int map_fd); typedef bool (*HPMHOOK_pre_inter_guild_update_member_info_short) (int *guild_id, int *account_id, int *char_id, int *online, int *lv, int16 *class); |