diff options
author | George Hazan <ghazan@miranda.im> | 2018-04-19 18:17:25 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2018-04-19 18:17:25 +0300 |
commit | 2dd3e220e4c783a5454d763b01d56e71042644f2 (patch) | |
tree | 3bc72825fdc8a981e0cf5af155fea98c305b6ab0 /include/m_core.h | |
parent | 198fa4f35166d05fa513658c30f4a0bc6ab5a733 (diff) |
CallObjectEventHook: new function to call the event hook of the specified object
Diffstat (limited to 'include/m_core.h')
-rw-r--r-- | include/m_core.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/m_core.h b/include/m_core.h index f39e711750..00ac529c3d 100644 --- a/include/m_core.h +++ b/include/m_core.h @@ -101,6 +101,7 @@ MIR_CORE_DLL(HANDLE) CreateHookableEvent(const char *name); MIR_CORE_DLL(int) DestroyHookableEvent(HANDLE hEvent);
MIR_CORE_DLL(int) SetHookDefaultForHookableEvent(HANDLE hEvent, MIRANDAHOOK pfnHook);
MIR_CORE_DLL(int) CallPluginEventHook(HINSTANCE hInst, HANDLE hEvent, WPARAM wParam = 0, LPARAM lParam = 0);
+MIR_CORE_DLL(int) CallObjectEventHook(void *pObject, HANDLE hEvent, WPARAM wParam = 0, LPARAM lParam = 0);
MIR_CORE_DLL(int) NotifyEventHooks(HANDLE hEvent, WPARAM wParam = 0, LPARAM lParam = 0);
MIR_CORE_DLL(int) NotifyFastHook(HANDLE hEvent, WPARAM wParam = 0, LPARAM lParam = 0);
|