diff options
author | Alexey Kulakov <panda75@bk.ru> | 2015-01-28 06:34:50 +0000 |
---|---|---|
committer | Alexey Kulakov <panda75@bk.ru> | 2015-01-28 06:34:50 +0000 |
commit | 0bc017159442fed3020f64da88adbb3d9ab2a03b (patch) | |
tree | ba723bc439207b527fe4b2b9baa5e68dd6953ccf /include/delphi/m_protosvc.inc | |
parent | 86dfe0c06437f79fd6f5bdfe34659339ef9cf525 (diff) |
Pascal: miranda API updates
git-svn-id: http://svn.miranda-ng.org/main/trunk@11937 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
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 542ca78a9f..315e5222c9 100644 --- a/include/delphi/m_protosvc.inc +++ b/include/delphi/m_protosvc.inc @@ -349,7 +349,7 @@ const PS_GETSTATUS = '/GetStatus';
{
- wParam : HDBEVENT
+ wParam : TMEVENT
lParam : 0
Affect : allow 'somebody' to add the user to their contact list, see notes
Returns: 0 on success, [non zero] on failure
@@ -359,13 +359,13 @@ const protocolSpecific: dword;
nick, firstname, lastName, e-mail, requestReason: ASCIIZ;
-
- HDBEVENT musts be the handle of such an event, one or more
+ TMEVENT 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 : TMEVENT
lParam : TChar - Reason
Affect : Deny an authorisation request
Returns: 0 on success, [non zero] on failure
@@ -503,10 +503,10 @@ const {
wParam : MAKEWPARAM(flags, iContact)
- lParam : HDBEVENT
+ lParam : TMEVENT
Affects: Add a contact to the contact list given an auth/added/contacts events, see notes
Returns: A TMCONTACT or NULL(0) on failure
- Notes : HDBEVENT must be either EVENTTYPE_AUTHREQ or EVENTTYPE_ADDED
+ Notes : TMEVENT 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
|