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 | |
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')
-rw-r--r-- | include/delphi/m_clui.inc | 55 | ||||
-rw-r--r-- | include/m_clui.h | 33 |
2 files changed, 0 insertions, 88 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
diff --git a/include/m_clui.h b/include/m_clui.h index c3b713f487..bd49c8213a 100644 --- a/include/m_clui.h +++ b/include/m_clui.h @@ -34,39 +34,6 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. //new groups are always created with the name "New Group"
#define MS_CLUI_GROUPADDED "CLUI/GroupCreated"
-//change the icon for a contact
-//wParam = (MCONTACT)hContact
-//lParam = iconid
-//returns 0 on sucess, nonzero on failure
-//iconid is an offset in the image list. see clist/geticonsimagelist
-#define MS_CLUI_CONTACTSETICON "CLUI/ContactSetIcon"
-
-//remove a contact from the list
-//wParam = (MCONTACT)hContact
-//lParam = 0
-//returns 0 on success, nonzero on failure
-//this is not necessarily the same as a contact being actually deleted, since
-//if a contact goes offline while 'hide offline' is on, this will be called
-#define MS_CLUI_CONTACTDELETED "CLUI/ContactDeleted"
-
-//add a contact to the list
-//wParam = (MCONTACT)hContact
-//lParam = iconId
-//returns 0 on success, nonzero on failure
-//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 message, even if hide
-//offline is on.
-//You should not re-sort the list on this call. A separate resort request will
-//be sent
-//iconid is an offset in the image list. see clist/geticonsimagelist
-#define MS_CLUI_CONTACTADDED "CLUI/ContactAdded"
-
//start a rebuild of the contact list
//wParam = lParam = 0
//returns 0 on success, nonzero on failure
|