diff options
author | George Hazan <george.hazan@gmail.com> | 2013-09-24 20:30:01 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2013-09-24 20:30:01 +0000 |
commit | edc889e1188d25838da939e0ec49f057ec7ee99e (patch) | |
tree | 56cadfd1630f3ea5d4fa9ff7ac9876d3f4ad4847 /include/m_popup.h | |
parent | 2c554f869eee8d765505db837da3989271169f27 (diff) |
ME_POPUP_FILTER - popup filtering event
git-svn-id: http://svn.miranda-ng.org/main/trunk@6218 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'include/m_popup.h')
-rw-r--r-- | include/m_popup.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/include/m_popup.h b/include/m_popup.h index 84bc5de878..3edf9addb9 100644 --- a/include/m_popup.h +++ b/include/m_popup.h @@ -300,6 +300,17 @@ static int __inline PUShowMessageW(wchar_t *lpwzText, DWORD kind) { #define PUShowMessageT PUShowMessage
#endif
+/* Popup/Filter
+Filters popups out
+
+wParam = (HANDLE)hContact
+lParam = (void*)pWindowProc;
+
+returns: 0 = popup allowed, 1 = popup filtered out
+*/
+
+#define ME_POPUP_FILTER "Popup/Filter"
+
//------------- Class API ----------------//
typedef struct {
|