summaryrefslogtreecommitdiff
path: root/src/plugins/HPMHooking/HPMHooking_map.HookingPoints.inc
diff options
context:
space:
mode:
authorHaru <haru@dotalux.com>2016-03-13 20:51:23 +0100
committerHaru <haru@dotalux.com>2016-07-12 20:58:38 +0200
commit2af9259a48ef9d7ec864fa80d1cb0392f2f2ee7a (patch)
tree27911973127264619a7832dfcc286980a73dcc4c /src/plugins/HPMHooking/HPMHooking_map.HookingPoints.inc
parent14d410fc8695049691bfb5e70e881020625f7a85 (diff)
downloadhercules-2af9259a48ef9d7ec864fa80d1cb0392f2f2ee7a.tar.gz
hercules-2af9259a48ef9d7ec864fa80d1cb0392f2f2ee7a.tar.bz2
hercules-2af9259a48ef9d7ec864fa80d1cb0392f2f2ee7a.tar.xz
hercules-2af9259a48ef9d7ec864fa80d1cb0392f2f2ee7a.zip
HPM Hooks Update
Signed-off-by: Haru <haru@dotalux.com>
Diffstat (limited to 'src/plugins/HPMHooking/HPMHooking_map.HookingPoints.inc')
-rw-r--r--src/plugins/HPMHooking/HPMHooking_map.HookingPoints.inc11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/plugins/HPMHooking/HPMHooking_map.HookingPoints.inc b/src/plugins/HPMHooking/HPMHooking_map.HookingPoints.inc
index 3b6582b18..59949c536 100644
--- a/src/plugins/HPMHooking/HPMHooking_map.HookingPoints.inc
+++ b/src/plugins/HPMHooking/HPMHooking_map.HookingPoints.inc
@@ -1835,6 +1835,17 @@ struct HookingPointData HookingPoints[] = {
{ HP_POP(mob->load, HP_mob_load) },
{ HP_POP(mob->clear_spawninfo, HP_mob_clear_spawninfo) },
{ HP_POP(mob->destroy_mob_db, HP_mob_destroy_mob_db) },
+/* mutex_interface */
+ { HP_POP(mutex->create, HP_mutex_create) },
+ { HP_POP(mutex->destroy, HP_mutex_destroy) },
+ { HP_POP(mutex->lock, HP_mutex_lock) },
+ { HP_POP(mutex->trylock, HP_mutex_trylock) },
+ { HP_POP(mutex->unlock, HP_mutex_unlock) },
+ { HP_POP(mutex->cond_create, HP_mutex_cond_create) },
+ { HP_POP(mutex->cond_destroy, HP_mutex_cond_destroy) },
+ { HP_POP(mutex->cond_wait, HP_mutex_cond_wait) },
+ { HP_POP(mutex->cond_signal, HP_mutex_cond_signal) },
+ { HP_POP(mutex->cond_broadcast, HP_mutex_cond_broadcast) },
/* npc_chat_interface */
{ HP_POP(npc_chat->sub, HP_npc_chat_sub) },
{ HP_POP(npc_chat->finalize, HP_npc_chat_finalize) },