summaryrefslogtreecommitdiff
path: root/include/delphi/m_message.inc
diff options
context:
space:
mode:
authorAlexey Kulakov <panda75@bk.ru>2014-06-14 19:02:18 +0000
committerAlexey Kulakov <panda75@bk.ru>2014-06-14 19:02:18 +0000
commitb26aeb50fa628e6d45a244dd6c84b523ef794722 (patch)
treee269e71b2f20651d631d66cee3cc1c42e1f40158 /include/delphi/m_message.inc
parent5d123b2e72a512f2434371112a24c87ec062a3bb (diff)
update
git-svn-id: http://svn.miranda-ng.org/main/trunk@9485 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'include/delphi/m_message.inc')
-rw-r--r--include/delphi/m_message.inc14
1 files changed, 11 insertions, 3 deletions
diff --git a/include/delphi/m_message.inc b/include/delphi/m_message.inc
index 95f0959b40..e5c9c34afb 100644
--- a/include/delphi/m_message.inc
+++ b/include/delphi/m_message.inc
@@ -120,9 +120,17 @@ const
}
MS_MSG_GETWINDOWDATA:PAnsiChar = 'MessageAPI/GetWindowData';
-{ wparam=(THANDLE)hContact
- lparam=(PWideChar)ptszMessageText
- Sets a status line text for the appropriate contact
+type
+ PStatusTextData = ^TStatusTextData;
+ TStatusTextData = record
+ cbSize :int;
+ hIcon :HICON;
+ tszText:array [0..99] of WideChar;
+ end;
+
+{ wparam=(TMCONTACT)hContact
+ lparam=PStatusTextData or NIL to clear statusbar
+ Sets a statusbar line text for the appropriate contact
}
MS_MSG_SETSTATUSTEXT:PAnsiChar = 'MessageAPI/SetStatusText';