diff options
author | Robert Pösel <robyer@seznam.cz> | 2014-06-14 17:30:55 +0000 |
---|---|---|
committer | Robert Pösel <robyer@seznam.cz> | 2014-06-14 17:30:55 +0000 |
commit | 3b84c05daa208192d55d74c0f37d2bfabfa5a3b1 (patch) | |
tree | e2784decac16fd21336882a13d674546310a3d25 /include | |
parent | 258d7bfb5327f30de316ecd893d0c5f0f93e0fd3 (diff) |
Ability to set also statusbar icon with MS_MSG_SETSTATUSTEXT service
git-svn-id: http://svn.miranda-ng.org/main/trunk@9479 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'include')
-rw-r--r-- | include/m_message.h | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/include/m_message.h b/include/m_message.h index 71ff3f4749..15029ebeea 100644 --- a/include/m_message.h +++ b/include/m_message.h @@ -72,8 +72,14 @@ typedef struct { HWND hwndLog; // log area window for the contact (or NULL if there is none)
} MessageWindowEventData;
-//wparam = (HANDLE)hContact
-//lparam = (TCHAR*)ptszMessageText
+typedef struct {
+ int cbSize;
+ HICON hIcon;
+ TCHAR tszText[100];
+} StatusTextData;
+
+//wparam = (MCONTACT)hContact
+//lparam = (StatusTextData*)
//Sets a status line text for the appropriate contact
#define MS_MSG_SETSTATUSTEXT "MessageAPI/SetStatusText"
|