diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/delphi/m_acc.inc | 2 | ||||
-rw-r--r-- | include/delphi/m_protosvc.inc | 6 | ||||
-rw-r--r-- | include/m_acc.h | 2 | ||||
-rw-r--r-- | include/m_protosvc.h | 6 |
4 files changed, 8 insertions, 8 deletions
diff --git a/include/delphi/m_acc.inc b/include/delphi/m_acc.inc index 7556af5130..1aff95d4e2 100644 --- a/include/delphi/m_acc.inc +++ b/include/delphi/m_acc.inc @@ -38,7 +38,7 @@ const a previous call of AVATAR_SETCONTACT.
wParam = not used
lParam = (AnsiChar *) protcol name
- Usage: SendMessage(hwnd, AVATAR_SETPROTOCOL, 0, (LPARAM) "MSN");
+ Usage: SendMessage(hwnd, AVATAR_SETPROTOCOL, 0, (LPARAM) "ICQ");
Only works on AVATAR_CONTROL_CLASS controls
}
AVATAR_SETPROTOCOL = WM_USER+2;
diff --git a/include/delphi/m_protosvc.inc b/include/delphi/m_protosvc.inc index a719fc5e38..69d9435a4e 100644 --- a/include/delphi/m_protosvc.inc +++ b/include/delphi/m_protosvc.inc @@ -100,9 +100,9 @@ const PFLAGNUM_2 = 2; // the status modes that the protocol supports
PF2_ONLINE = $00000001; // an unadorned online mode
PF2_INVISIBLE = $00000002;
- PF2_SHORTAWAY = $00000004; // Away on ICQ, BRB on MSN
- PF2_LONGAWAY = $00000008; // NA on ICQ, Away on MSN
- PF2_LIGHTDND = $00000010; // Occupied on ICQ, Busy on MSN
+ PF2_SHORTAWAY = $00000004; // Away on ICQ
+ PF2_LONGAWAY = $00000008; // NA on ICQ
+ PF2_LIGHTDND = $00000010; // Occupied on ICQ
PF2_HEAVYDND = $00000020; // DND on ICQ
PF2_FREECHAT = $00000040;
PF2_IDLE = $00000200; //added during 0.3.4 (2004/09/13)
diff --git a/include/m_acc.h b/include/m_acc.h index 93be99d204..b0236b1aa6 100644 --- a/include/m_acc.h +++ b/include/m_acc.h @@ -37,7 +37,7 @@ Boston, MA 02111-1307, USA. // a previous call of AVATAR_SETCONTACT.
// wParam = not used
// lParam = (char *) protcol name
-// Usage: SendMessage(hwnd, AVATAR_SETPROTOCOL, 0, (LPARAM) "MSN");
+// Usage: SendMessage(hwnd, AVATAR_SETPROTOCOL, 0, (LPARAM) "ICQ");
// Only works on AVATAR_CONTROL_CLASS controls
#define AVATAR_SETPROTOCOL (WM_USER+2)
diff --git a/include/m_protosvc.h b/include/m_protosvc.h index 8397be07cb..b44732fa18 100644 --- a/include/m_protosvc.h +++ b/include/m_protosvc.h @@ -90,9 +90,9 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. #define PF2_ONLINE 0x00000001 // an unadorned online mode
#define PF2_INVISIBLE 0x00000002
-#define PF2_SHORTAWAY 0x00000004 // Away on ICQ, BRB on MSN
-#define PF2_LONGAWAY 0x00000008 // NA on ICQ, Away on MSN
-#define PF2_LIGHTDND 0x00000010 // Occupied on ICQ, Busy on MSN
+#define PF2_SHORTAWAY 0x00000004 // Away on ICQ
+#define PF2_LONGAWAY 0x00000008 // NA on ICQ
+#define PF2_LIGHTDND 0x00000010 // Occupied on ICQ
#define PF2_HEAVYDND 0x00000020 // DND on ICQ
#define PF2_FREECHAT 0x00000040
#define PF2_IDLE 0x00000200
|