diff options
Diffstat (limited to 'include/delphi/m_message.inc')
-rw-r--r-- | include/delphi/m_message.inc | 14 |
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';
|