diff options
author | Alexey Kulakov <panda75@bk.ru> | 2014-04-24 14:55:20 +0000 |
---|---|---|
committer | Alexey Kulakov <panda75@bk.ru> | 2014-04-24 14:55:20 +0000 |
commit | c3a168743616db6606702db5ad0fecab4dfee3da (patch) | |
tree | 523ef1399093917f3565d769826ceecb7eb2ef6c /include | |
parent | 90ad600cb38a04c9272a3599c72d6559c822b155 (diff) |
Miranda API update
Watrack refactoring, API changes
git-svn-id: http://svn.miranda-ng.org/main/trunk@9068 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'include')
-rw-r--r-- | include/delphi/m_popup.inc | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/include/delphi/m_popup.inc b/include/delphi/m_popup.inc index b73c884c1d..5c079764f9 100644 --- a/include/delphi/m_popup.inc +++ b/include/delphi/m_popup.inc @@ -190,13 +190,6 @@ You may pass additional creation flags via lParam: MS_POPUP_GETPLUGINDATA:PAnsiChar = 'Popup/GetPluginData';
{
- 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.
-}
- MS_POPUP_ISSECONDLINESHOWN:PAnsiChar = 'Popup/IsSecondLineShown';
-
-{
Requests an action or an answer from Popup module.
wParam = (WPARAM)wpQuery
returns 0 on success, -1 on error, 1 on stupid calls ;-)
@@ -232,7 +225,7 @@ You may pass additional creation flags via lParam: {
wParam = hPopupWindow
lParam = lpzNewText
- returns: > 0 for success, -1 for failure, 0 if the failure is due to second line not being shown. (but you could call PUIsSecondLineShown() before changing the text...)
+ returns: > 0 for success, -1 for failure, 0 if the failure is due to second line not being shown.
Changes the text displayed in the second line of the popup.
}
MS_POPUP_CHANGETEXTW:PAnsiChar = 'Popup/ChangetextW';
@@ -337,6 +330,7 @@ type colorText :TCOLORREF;
PluginWindowProc:pointer;
iSeconds :int;
+ lParam :LPARAM; //APF_RETURN_HWND, APF_CUSTOM_POPUP ... as above
end;
const
|