diff options
author | Szymon Tokarz <wsx22@o2.pl> | 2014-11-13 00:05:26 +0000 |
---|---|---|
committer | Szymon Tokarz <wsx22@o2.pl> | 2014-11-13 00:05:26 +0000 |
commit | 4ca096262dfc106d1a2207145544cbd3e84e67cb (patch) | |
tree | b84d369c1e4dcf3b38c8acd9d1f3e9202e17ec0a /protocols/Sametime/src/meanwhile | |
parent | bef877078d09d6162c1e8565bd34b22fbd9ace69 (diff) |
Sametime protocol:
- Support the Sametime 'in meeting' status (linked with Miranda 'Occupied' status)
- New protocol icons from oryginal client
Patch by pepinlebref
git-svn-id: http://svn.miranda-ng.org/main/trunk@10976 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Sametime/src/meanwhile')
-rw-r--r-- | protocols/Sametime/src/meanwhile/src/mw_common.h | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/protocols/Sametime/src/meanwhile/src/mw_common.h b/protocols/Sametime/src/meanwhile/src/mw_common.h index 1294da4959..6138ce1b4d 100644 --- a/protocols/Sametime/src/meanwhile/src/mw_common.h +++ b/protocols/Sametime/src/meanwhile/src/mw_common.h @@ -153,10 +153,13 @@ struct mwPrivacyInfo { /* 8.3.5 User Status Types */ enum mwStatusType { - mwStatus_ACTIVE = 0x0020, - mwStatus_IDLE = 0x0040, - mwStatus_AWAY = 0x0060, - mwStatus_BUSY = 0x0080, + mwStatus_ACTIVE = 0x0020, + mwStatus_IDLE = 0x0040, + mwStatus_AWAY = 0x0060, + mwStatus_BUSY = 0x0080, + /// Miranda NG development start + mwStatus_IN_MEETING = 0x0008, + /// Miranda NG development end }; |