diff options
Diffstat (limited to 'include/delphi')
-rw-r--r-- | include/delphi/m_protosvc.inc | 1 | ||||
-rw-r--r-- | include/delphi/m_skin.inc | 3 | ||||
-rw-r--r-- | include/delphi/statusmodes.inc | 3 |
3 files changed, 5 insertions, 2 deletions
diff --git a/include/delphi/m_protosvc.inc b/include/delphi/m_protosvc.inc index bd27ef33ac..f56e18adb2 100644 --- a/include/delphi/m_protosvc.inc +++ b/include/delphi/m_protosvc.inc @@ -104,6 +104,7 @@ const PF2_LONGAWAY = $00000008; // NA on ICQ, Away on MSN
PF2_LIGHTDND = $00000010; // Occupied on ICQ, Busy on MSN
PF2_HEAVYDND = $00000020; // DND on ICQ
+ PF2_FREECHAT = $00000040;
PF2_IDLE = $00000200; //added during 0.3.4 (2004/09/13)
PFLAGNUM_3 = 3; //the status modes that the protocol supports
diff --git a/include/delphi/m_skin.inc b/include/delphi/m_skin.inc index d487bcc5c1..862b309305 100644 --- a/include/delphi/m_skin.inc +++ b/include/delphi/m_skin.inc @@ -103,7 +103,8 @@ const SKINICON_STATUS_NA = 3;
SKINICON_STATUS_OCCUPIED = 4;
SKINICON_STATUS_DND = 5;
- SKINICON_STATUS_INVISIBLE = 6;
+ SKINICON_STATUS_FREE4CHAT = 6;
+ SKINICON_STATUS_INVISIBLE = 7;
function Skin_LoadProtoIcon(protoName:PAnsiChar; iconId:int; big:byte) : HICON; stdcall;
external AppDLL name 'Skin_LoadProtoIcon';
diff --git a/include/delphi/statusmodes.inc b/include/delphi/statusmodes.inc index 795522d856..9628d86644 100644 --- a/include/delphi/statusmodes.inc +++ b/include/delphi/statusmodes.inc @@ -41,7 +41,8 @@ const ID_STATUS_DND = 40074;
ID_STATUS_NA = 40075;
ID_STATUS_OCCUPIED = 40076;
- ID_STATUS_INVISIBLE = 40077;
+ ID_STATUS_FREECHAT = 40077;
+ ID_STATUS_INVISIBLE = 40078;
ID_STATUS_IDLE = 40081; // do not use as a status
ID_STATUS_MIN = ID_STATUS_OFFLINE;
|