diff options
author | Hercules.ws <Hercules@efficiently.awesome> | 2014-01-19 05:59:58 +0100 |
---|---|---|
committer | HerculesWSAPI <Hercules@efficiently.awesome> | 2014-01-19 05:59:58 +0100 |
commit | 284a1631b40f442e058dabd9fd31301b9e50e71b (patch) | |
tree | 46dad8c3c4ef346a74eca76c82252493186258a0 /src/plugins/HPMHooking/HPMHooking.Hooks.inc | |
parent | acc992ac2838f6380ebf2b2f8a514e86c2b750d9 (diff) | |
download | hercules-284a1631b40f442e058dabd9fd31301b9e50e71b.tar.gz hercules-284a1631b40f442e058dabd9fd31301b9e50e71b.tar.bz2 hercules-284a1631b40f442e058dabd9fd31301b9e50e71b.tar.xz hercules-284a1631b40f442e058dabd9fd31301b9e50e71b.zip |
HPM Hooks Update
Signed-off-by: HerculesWSAPI <Hercules@efficiently.awesome>
Diffstat (limited to 'src/plugins/HPMHooking/HPMHooking.Hooks.inc')
-rw-r--r-- | src/plugins/HPMHooking/HPMHooking.Hooks.inc | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/plugins/HPMHooking/HPMHooking.Hooks.inc b/src/plugins/HPMHooking/HPMHooking.Hooks.inc index 73936f460..7b69fd902 100644 --- a/src/plugins/HPMHooking/HPMHooking.Hooks.inc +++ b/src/plugins/HPMHooking/HPMHooking.Hooks.inc @@ -4254,13 +4254,13 @@ void HP_chrif_send_report(char *buf, int len) { } return; } -bool HP_chrif_flush_fifo(void) { +bool HP_chrif_flush(void) { int hIndex = 0; bool retVal___ = false; - if( HPMHooks.count.HP_chrif_flush_fifo_pre ) { + if( HPMHooks.count.HP_chrif_flush_pre ) { bool (*preHookFunc) (void); - for(hIndex = 0; hIndex < HPMHooks.count.HP_chrif_flush_fifo_pre; hIndex++ ) { - preHookFunc = HPMHooks.list.HP_chrif_flush_fifo_pre[hIndex].func; + for(hIndex = 0; hIndex < HPMHooks.count.HP_chrif_flush_pre; hIndex++ ) { + preHookFunc = HPMHooks.list.HP_chrif_flush_pre[hIndex].func; retVal___ = preHookFunc(); } if( *HPMforce_return ) { @@ -4269,12 +4269,12 @@ bool HP_chrif_flush_fifo(void) { } } { - retVal___ = HPMHooks.source.chrif.flush_fifo(); + retVal___ = HPMHooks.source.chrif.flush(); } - if( HPMHooks.count.HP_chrif_flush_fifo_post ) { + if( HPMHooks.count.HP_chrif_flush_post ) { bool (*postHookFunc) (bool retVal___); - for(hIndex = 0; hIndex < HPMHooks.count.HP_chrif_flush_fifo_post; hIndex++ ) { - postHookFunc = HPMHooks.list.HP_chrif_flush_fifo_post[hIndex].func; + for(hIndex = 0; hIndex < HPMHooks.count.HP_chrif_flush_post; hIndex++ ) { + postHookFunc = HPMHooks.list.HP_chrif_flush_post[hIndex].func; retVal___ = postHookFunc(retVal___); } } |