diff options
author | George Hazan <george.hazan@gmail.com> | 2016-09-17 17:42:48 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2016-09-17 17:42:48 +0000 |
commit | d0735d50571bca069ee2fe372095b3750a32f51d (patch) | |
tree | 19d87e89cf4c4cf583b3d6873e0273c96795b8e6 /include/m_core.h | |
parent | e5d58fc3bbbce2773b7c6c3f8b7da6faa66b672e (diff) |
- fix for tray icon blinking in chats;
- code cleaning
git-svn-id: http://svn.miranda-ng.org/main/trunk@17310 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
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 5557623e5a..6b40065b2f 100644 --- a/include/m_core.h +++ b/include/m_core.h @@ -118,6 +118,7 @@ MIR_CORE_DLL(int) ServiceExists(const char *name); MIR_CORE_DLL(INT_PTR) CallService(const char *name, WPARAM wParam = 0, LPARAM lParam = 0);
MIR_CORE_DLL(INT_PTR) CallServiceSync(const char *name, WPARAM wParam = 0, LPARAM lParam = 0);
+MIR_CORE_DLL(INT_PTR) CallFunctionSync(INT_PTR(__stdcall *func)(void *), void *arg); MIR_CORE_DLL(int) CallFunctionAsync(void (__stdcall *func)(void *), void *arg);
MIR_CORE_DLL(void) KillModuleServices(HINSTANCE hInst);
MIR_CORE_DLL(void) KillObjectServices(void* pObject);
|