diff options
author | Haru <haru@dotalux.com> | 2014-11-15 04:00:54 +0100 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-11-15 11:47:30 +0300 |
commit | 61fc83fd7dd51e9a88ac7e6264692fcf561a37f7 (patch) | |
tree | ddaca2f239f7f96c6f96ec70f6af9fbe87e5c033 /src/plugins/HPMHooking/HPMHooking_char.HPMHooksCore.inc | |
parent | 7456ee13ea06a28e1b9bf9d53ff7138fe40bf0aa (diff) | |
download | hercules-61fc83fd7dd51e9a88ac7e6264692fcf561a37f7.tar.gz hercules-61fc83fd7dd51e9a88ac7e6264692fcf561a37f7.tar.bz2 hercules-61fc83fd7dd51e9a88ac7e6264692fcf561a37f7.tar.xz hercules-61fc83fd7dd51e9a88ac7e6264692fcf561a37f7.zip |
Corrected an issue in the HPMHookGen when interfaces only have one member
- Fixed hooks/symbols generation for the inter_quest interface
- Re-enabled strict mode
Signed-off-by: Haru <haru@dotalux.com>
Diffstat (limited to 'src/plugins/HPMHooking/HPMHooking_char.HPMHooksCore.inc')
-rw-r--r-- | src/plugins/HPMHooking/HPMHooking_char.HPMHooksCore.inc | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/plugins/HPMHooking/HPMHooking_char.HPMHooksCore.inc b/src/plugins/HPMHooking/HPMHooking_char.HPMHooksCore.inc index 52ca7fc84..46a225568 100644 --- a/src/plugins/HPMHooking/HPMHooking_char.HPMHooksCore.inc +++ b/src/plugins/HPMHooking/HPMHooking_char.HPMHooksCore.inc @@ -499,6 +499,8 @@ struct { struct HPMHookPoint *HP_inter_pet_delete__post; struct HPMHookPoint *HP_inter_pet_parse_frommap_pre; struct HPMHookPoint *HP_inter_pet_parse_frommap_post; + struct HPMHookPoint *HP_inter_quest_parse_frommap_pre; + struct HPMHookPoint *HP_inter_quest_parse_frommap_post; struct HPMHookPoint *HP_inter_storage_tosql_pre; struct HPMHookPoint *HP_inter_storage_tosql_post; struct HPMHookPoint *HP_inter_storage_fromsql_pre; @@ -1388,6 +1390,8 @@ struct { int HP_inter_pet_delete__post; int HP_inter_pet_parse_frommap_pre; int HP_inter_pet_parse_frommap_post; + int HP_inter_quest_parse_frommap_pre; + int HP_inter_quest_parse_frommap_post; int HP_inter_storage_tosql_pre; int HP_inter_storage_tosql_post; int HP_inter_storage_fromsql_pre; @@ -1794,6 +1798,7 @@ struct { struct inter_mercenary_interface inter_mercenary; struct inter_party_interface inter_party; struct inter_pet_interface inter_pet; + struct inter_quest_interface inter_quest; struct inter_storage_interface inter_storage; struct loginif_interface loginif; struct mapif_interface mapif; |