diff options
author | George Hazan <george.hazan@gmail.com> | 2016-09-16 19:43:24 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2016-09-16 19:43:24 +0000 |
commit | 0c41e6c4566fdb2d99b8a6ca1fb48859fd4a0e34 (patch) | |
tree | 700937499ee66952d1ca5b92928fc9ec3b034447 /include/m_chat_int.h | |
parent | 7a7a6637021d78ad995f3e21e9743fae69bd2562 (diff) |
- chats services replaces with functions;
- chat calls switched from CallServiceSync to direct calls everywhere
git-svn-id: http://svn.miranda-ng.org/main/trunk@17305 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'include/m_chat_int.h')
-rw-r--r-- | include/m_chat_int.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/include/m_chat_int.h b/include/m_chat_int.h index 30cc1e1115..82002a8bad 100644 --- a/include/m_chat_int.h +++ b/include/m_chat_int.h @@ -442,9 +442,6 @@ struct CHAT_MANAGER extern CHAT_MANAGER *pci;
extern int hLangpack;
-__forceinline void mir_getCI(CHAT_MANAGER_INITDATA *pData)
-{
- pci = (CHAT_MANAGER*)CallService("GChat/GetInterface", hLangpack, (LPARAM)pData);
-}
+EXTERN_C MIR_APP_DLL(CHAT_MANAGER*) Chat_GetInterface(CHAT_MANAGER_INITDATA *pData = NULL, int = hLangpack);
#endif // M_CHAT_INT_H__
|