diff options
Diffstat (limited to 'include/delphi')
-rw-r--r-- | include/delphi/m_protocols.inc | 1 | ||||
-rw-r--r-- | include/delphi/m_protosvc.inc | 3 |
2 files changed, 0 insertions, 4 deletions
diff --git a/include/delphi/m_protocols.inc b/include/delphi/m_protocols.inc index d7bf082421..3a7bf25c7f 100644 --- a/include/delphi/m_protocols.inc +++ b/include/delphi/m_protocols.inc @@ -57,7 +57,6 @@ type const
ACKTYPE_MESSAGE = 0;
- ACKTYPE_URL = 1;
ACKTYPE_FILE = 2;
ACKTYPE_CHAT = 3;
ACKTYPE_AWAYMSG = 4;
diff --git a/include/delphi/m_protosvc.inc b/include/delphi/m_protosvc.inc index 25c55dde3e..6846081c76 100644 --- a/include/delphi/m_protosvc.inc +++ b/include/delphi/m_protosvc.inc @@ -66,9 +66,6 @@ const PF1_IMSEND = $00000001; // supports IM sending
PF1_IMRECV = $00000002; // supports IM receiving
PF1_IM = (PF1_IMSEND or PF1_IMRECV);
- PF1_URLSEND = $00000004; // supports separate URL sending
- PF1_URLRECV = $00000008; // supports separate URL receiving
- PF1_URL = (PF1_URLSEND or PF1_URLRECV);
PF1_FILESEND = $00000010; // supports file sending
PF1_FILERECV = $00000020; // supports file receiving
PF1_FILE = (PF1_FILESEND or PF1_FILERECV);
|