diff options
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__
|