diff options
author | Tobias Weimer <wishmaster51@googlemail.com> | 2014-04-21 17:39:45 +0000 |
---|---|---|
committer | Tobias Weimer <wishmaster51@googlemail.com> | 2014-04-21 17:39:45 +0000 |
commit | c13392f8596e858110dc4c61fbdf1d41e47cc8a9 (patch) | |
tree | 7eb5a3790ce4069393addff302d24306a496a04e /include | |
parent | d1851afba0e105ab2b0c7e8ad5e72a4dfbc5dd71 (diff) |
- Added lParam to POPUPCLASS
- Removed MS_POPUP_ISSECONDLINESHOWN
- Support for mutating popups in Facebook
git-svn-id: http://svn.miranda-ng.org/main/trunk@9021 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'include')
-rw-r--r-- | include/m_popup.h | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/include/m_popup.h b/include/m_popup.h index 3b4cfc6240..e53b720302 100644 --- a/include/m_popup.h +++ b/include/m_popup.h @@ -157,19 +157,6 @@ static void __inline * PUGetPluginData(HWND hPopupWindow) { return (void*)CallService(MS_POPUP_GETPLUGINDATA, (WPARAM)hPopupWindow, (LPARAM)uselessPointer);
}
-/* Popup/IsSecondLineShown
-Checks if second line is enable
-
-wParam = 0
-lParam = 0
-
-Returns: 0 if the user has chosen not to have the second line, 1 if he choose to have the second line.
-*/
-#define MS_POPUP_ISSECONDLINESHOWN "Popup/IsSecondLineShown"
-static BOOL __inline PUIsSecondLineShown() {
- return (BOOL)CallService(MS_POPUP_ISSECONDLINESHOWN, 0, 0);
-}
-
/* Popup/Query
Requests an action or an answer from Popup module.
@@ -332,6 +319,7 @@ typedef struct { WNDPROC PluginWindowProc;
int iSeconds;
+ LPARAM lParam; //APF_RETURN_HWND, APF_CUSTOM_POPUP ... as above
} POPUPCLASS;
#define PCF_UNICODE 0x0001
|