diff options
author | George Hazan <george.hazan@gmail.com> | 2013-06-21 13:54:41 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2013-06-21 13:54:41 +0000 |
commit | 5dbe3cb375f54da70a80cf1a2cbc94836f82eeaa (patch) | |
tree | 5ae44b3e03d3413592934e969e20adc172416179 /include/m_core.h | |
parent | 7d5fd04ca483e509bfa6d532b29af4d0322c0871 (diff) |
new helper ProtoCallService - simply glues module & service name, and then simplyu calls CallService()
git-svn-id: http://svn.miranda-ng.org/main/trunk@5077 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 7e3c4ea99f..1cb48af582 100644 --- a/include/m_core.h +++ b/include/m_core.h @@ -433,6 +433,7 @@ MIR_CORE_DLL(int) mir_vsntprintf(TCHAR *buffer, size_t count, const TCHAR* fm ///////////////////////////////////////////////////////////////////////////////
// protocol functions
+MIR_CORE_DLL(INT_PTR) ProtoCallService(const char *szModule, const char *szService, WPARAM wParam, LPARAM lParam);
MIR_CORE_DLL(int) ProtoServiceExists(const char *szModule, const char *szService);
MIR_CORE_DLL(INT_PTR) ProtoBroadcastAck(const char *szModule, HANDLE hContact, int type, int result, HANDLE hProcess, LPARAM lParam);
|