diff options
author | George Hazan <george.hazan@gmail.com> | 2013-06-07 20:35:29 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2013-06-07 20:35:29 +0000 |
commit | e31ac6c82a921e5d972fe3a3d437f18f147877a9 (patch) | |
tree | 771e43e5edba542df8d972653a9141cfa5bc091e /include/delphi | |
parent | c67ee19b7db5bd93c5dbc11865834ff8dd1db924 (diff) |
duplicated and unused services removed
git-svn-id: http://svn.miranda-ng.org/main/trunk@4899 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'include/delphi')
-rw-r--r-- | include/delphi/m_clist.inc | 22 | ||||
-rw-r--r-- | include/delphi/m_clui.inc | 28 |
2 files changed, 0 insertions, 50 deletions
diff --git a/include/delphi/m_clist.inc b/include/delphi/m_clist.inc index ac6c1746e2..c3ea28b48d 100644 --- a/include/delphi/m_clist.inc +++ b/include/delphi/m_clist.inc @@ -432,17 +432,6 @@ const MS_CLIST_DOCKINGISDOCKED:PAnsiChar = 'CList/DockingIsDocked';
{
- wParam : Pointer to a TMSG
- lParam : Pointer to an LRESULT
- Affect : Process all the messages required for the tray icon, see notes
- Returns: TRUE if the message should not be processed anymore, False otherwise
- Notes : Only msg.hwnd, msg.message, msg.wparam and msg.lParam are used
- your WndProc should return LRESULT if and ONLY if TRUE is returned
- Version: v0.1.1.0+
- }
- MS_CLIST_TRAYICONPROCESSMESSAGE:PAnsiChar = 'CList/TrayIconProcessMessage';
-
- {
wParam : Pointer to TMSG
lParam : Pointer to an LRESULT
Affect : Process all the messages required for hotkeys, see notes
@@ -461,17 +450,6 @@ const }
MS_CLIST_SHOWHIDE:PAnsiChar = 'CList/ShowHide';
- {
- wParam : 0
- lParam : 0
- Affect : temporarily disable the autohide feature, see notes
- Notes : this service will restart the auto hide timer, so if you need
- to keep the window visible you'll have to bee getting user input
- or calling this service each time
- Version: v0.1.2.1+
- }
- MS_CLIST_PAUSEAUTOHIDE:PAnsiChar = 'CList/PauseAutoHide';
-
{
sent when the group get modified (created, renamed or deleted)
or contact is moving from group to group
diff --git a/include/delphi/m_clui.inc b/include/delphi/m_clui.inc index 00a2e80cde..febf121332 100644 --- a/include/delphi/m_clui.inc +++ b/include/delphi/m_clui.inc @@ -46,16 +46,6 @@ const MS_CLUI_GETHWNDTREE:PAnsiChar = 'CLUI/GetHwndTree';
{
- wParam : new status
- lParam : null terminated string to a protocol ID
- Affects: Change the protocol specific status indicators, see notes!
- Returns: 0 on success, [non zero] on failure
- Notes : protocol modules don't want to call this, they want
- clist/protocolstatuschanged instead
- }
- MS_CLUI_PROTOCOLSTATUSCHANGED:PAnsiChar = 'CLUI/ProtocolStatusChanged';
-
- {
wParam : Handle to a group
lParam : 1 or 0
Affect : A new group was created, add it to the list, see notes
@@ -147,16 +137,6 @@ const MS_CLUI_LISTENDREBUILD:PAnsiChar = 'CLUI/ListEndRebuild';
{
- wParam : 0
- lParam : 0
- Affect : Sort the contact list now, see notes
- Returns: 0 success, [non zero] on failure
- Notes : Sorts are buffered so you won't get this message lots of times
- if the lists needs to be resorted many times rapidly
- }
- MS_CLUI_SORTLIST:PAnsiChar = 'CLUI/SortList';
-
- {
wParam : CLUICAPS_*
lParam : 0
Affect : Gets a load of capabilites for the loaded CLUI, see notes
@@ -194,14 +174,6 @@ const CLUICAPS_FLAGS2 = 1; // Returns info about extra icons
// HIWORD is the first extra icon number, LOWORD is the extra icons count
-//LPARAMS for CLUICAPS_FLAGS1
- CLUIF2_PLUGININFO = 1; //returns pointer to plugininfo
- CLUIF2_CLISTTYPE = 2; // the genaration of list in chronologic
-// modern layered return 0x07
-// (assuming classic, mw, meta, nicer1, modern1, nicer++, modernLayered)
-// +0x0100 for unicode
- CLUIF2_EXTRACOLUMNCOUNT = 3; // return max number of extra icon available to be set in main window
-
MS_CLUI_GETCAPS:PAnsiChar = 'CLUI/GetCaps';
{
|