diff options
author | George Hazan <george.hazan@gmail.com> | 2013-09-28 18:22:40 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2013-09-28 18:22:40 +0000 |
commit | 56ac6b6b49cd5785ce5fb14dc63e776b4b3da07a (patch) | |
tree | 7f0b1eeaa437cf2ecd31f69add3242007f46ae3b /include | |
parent | 00c6c10291bf7f86e871b648e8dd003a0a16c8e5 (diff) |
- Google specific functionality got moved to GTalkExt, part I;
- new event for extensions list creation, ME_JABBER_EXTLISTINIT
git-svn-id: http://svn.miranda-ng.org/main/trunk@6260 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'include')
-rw-r--r-- | include/m_jabber.h | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/include/m_jabber.h b/include/m_jabber.h index 05a94e5de9..26635b24a4 100644 --- a/include/m_jabber.h +++ b/include/m_jabber.h @@ -180,13 +180,20 @@ __forceinline IJabberInterface *getJabberApi(const char *szAccount) /*
A menu hook to be called during Jabber protocol menu initialization.
+wParam = (HGENMENU)m_hMenuRoot;
+lParam = (LPARAM)(IJabberInterface*).
+Returns FALSE if all is Ok, and TRUE otherwise.
+*/
-wParam = 0;
-lParam = (LPARAM)(IJabberInterface**).
+#define ME_JABBER_MENUINIT "Jabber/ProtoMenuInit"
+/*
+A hook to be called during extensions list's creation
+wParam = (WPARAM)(LIST<TCHAR>*) - extensions list to be populated;
+lParam = (LPARAM)(IJabberInterface*).
Returns FALSE if all is Ok, and TRUE otherwise.
*/
-#define ME_JABBER_MENUINIT "Jabber/ProtoMenuInit"
+#define ME_JABBER_EXTLISTINIT "Jabber/ExtListInit"
#endif // M_JABBER_H__
|