diff options
Diffstat (limited to 'include/delphi/m_protosvc.inc')
-rw-r--r-- | include/delphi/m_protosvc.inc | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/include/delphi/m_protosvc.inc b/include/delphi/m_protosvc.inc index 4414323a44..549a10f08e 100644 --- a/include/delphi/m_protosvc.inc +++ b/include/delphi/m_protosvc.inc @@ -346,7 +346,7 @@ const PS_GETSTATUS = '/GetStatus';
{
- wParam : HDBEVENT
+ wParam : HANDLE
lParam : 0
Affect : allow 'somebody' to add the user to their contact list, see notes
Returns: 0 on success, [non zero] on failure
@@ -356,13 +356,13 @@ const protocolSpecific: DWORD;
nick, firstname, lastName, e-mail, requestReason: ASCIIZ;
-
- HDBEVENT musts be the handle of such an event, one or more
+ HANDLE musts be the handle of such an event, one or more
fields may be empty if the protocol doesn't support them
}
PS_AUTHALLOW = '/Authorize';
{
- wParam : HDBEVENT
+ wParam : HANDLE
lParam : TChar - Reason
Affect : Deny an authorisation request
Returns: 0 on success, [non zero] on failure
@@ -500,10 +500,10 @@ const {
wParam : MAKEWPARAM(flags, iContact)
- lParam : HDBEVENT
+ lParam : HANDLE
Affects: Add a contact to the contact list given an auth/added/contacts events, see notes
Returns: A HCONTACT or NULL(0) on failure
- Notes : HDBEVENT must be either EVENTTYPE_AUTHREQ or EVENTTYPE_ADDED
+ Notes : HANDLE must be either EVENTTYPE_AUTHREQ or EVENTTYPE_ADDED
flags are the same as PS_ADDTOLIST,
-
iContacts is only used for contacts vents, it is 0-based index
|