diff options
author | George Hazan <george.hazan@gmail.com> | 2016-04-18 16:47:38 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2016-04-18 16:47:38 +0000 |
commit | cb07641dfb24d64306b3c473990622d0c653e567 (patch) | |
tree | 769dcc898bea767a595987a7ce4eef7832b66e09 /include/delphi | |
parent | 5b2cd5b8dc67bd27d8c4e877e69057f4e0fb2a24 (diff) |
empty services removed
git-svn-id: http://svn.miranda-ng.org/main/trunk@16714 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'include/delphi')
-rw-r--r-- | include/delphi/m_clui.inc | 55 |
1 files changed, 0 insertions, 55 deletions
diff --git a/include/delphi/m_clui.inc b/include/delphi/m_clui.inc index a6b5fa2583..10af8c8c29 100644 --- a/include/delphi/m_clui.inc +++ b/include/delphi/m_clui.inc @@ -43,61 +43,6 @@ const MS_CLUI_GROUPADDED:PAnsiChar = 'CLUI/GroupCreated';
{
- wParam : TMCONTACT
- lParam : ICON_ID
- Affect : Change the icon for a contact, see notes
- Returns: 0 on success, [non zero] on failure
- Notes : ICON_ID is an offset in the imagelist, see clist/geticonsimagelist
- }
- MS_CLUI_CONTACTSETICON:PAnsiChar = 'CLUI/ContactSetIcon';
-
- {
- wParam : TMCONTACT
- lParam : 0
- Affect : Remove a contact from the list, see notes
- Returns: 0 on success, [non zereo] on failure
- Notes : this contact is NOT actually being deleted, since if
- a contact goes offline while 'hide offline' option is sset,
- this service will be called then ALSO
- }
- MS_CLUI_CONTACTDELETED:PAnsiChar = 'CLUI/ContactDeleted';
-
- {
- wParam : TMCONTACT
- lParam : ICON_ID
- Affect : Add a contact to the list, see note
- returns: 0 on success, [non zero] on failure
- Notes : the caller processes the 'hide offline' setting, so the callee
- should not do further processing based on the value of this setting
- -
- WARNING: this will be called to re-add a contact when they come
- online if 'hide offline' is on, but it cannot determine if
- the contact is already on the list, so you may get requests to
- add a contact when it is already on the list, which you should ignore.
- -
- You'll also get this whenever an event is added for a contact,
- since if the contact was offline, it needs to be shown to
- display the mesage, even if 'hide offlines' is on.
- -
- you should not resort the list on this call, a seperate resort
- request will be sent.
- -
- ICON_ID is an offset in the image list, see clist/geticonsimagelist
-
- }
- MS_CLUI_CONTACTADDED:PAnsiChar = 'CLUI/ContactAdded';
-
- {
- wParam : TMCONTACT
- lParam : 0
- Affect : Reename a contact in the lists, see notes
- Returns: 0 on success, [non zero] on failure
- Notes : You should not re-sort the list on this call, a separate resort
- request will be sent, you can get the new name from clist/getcontactdisplayname
- }
- MS_CLUI_CONTACTRENAMED:PAnsiChar = 'CLUI/ContactRenamed';
-
- {
wParam : 0
lParam : 0
Affect : Start a rebuild of the contact list, see notes
|