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 | |
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')
-rw-r--r-- | include/delphi/m_clist.inc | 22 | ||||
-rw-r--r-- | include/delphi/m_clui.inc | 28 | ||||
-rw-r--r-- | include/m_clist.h | 16 | ||||
-rw-r--r-- | include/m_clui.h | 22 |
4 files changed, 0 insertions, 88 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';
{
diff --git a/include/m_clist.h b/include/m_clist.h index eba83c6769..587a3cb35b 100644 --- a/include/m_clist.h +++ b/include/m_clist.h @@ -443,14 +443,6 @@ typedef struct { //returns nonzero if the contact list is docked, of 0 if it is not
#define MS_CLIST_DOCKINGISDOCKED "CList/DockingIsDocked"
-//process all the messages required for the tray icon v0.1.1.0+
-//wParam = (WPARAM)(MSG*)&msg
-//lParam = (LPARAM)(LRESULT*)&lResult
-//returns TRUE if the message should not be processed further, FALSE otherwise
-//only msg.hwnd, msg.message, msg.wParam and msg.lParam are used
-//your wndproc should return lResult if and only if TRUE is returned
-#define MS_CLIST_TRAYICONPROCESSMESSAGE "CList/TrayIconProcessMessage"
-
//process all the messages required for hotkeys v0.1.1.0+
//wParam = (WPARAM)(MSG*)&msg
//lParam = (LPARAM)(LRESULT*)&lResult
@@ -464,14 +456,6 @@ typedef struct { //returns 0 on success, nonzero on failure
#define MS_CLIST_SHOWHIDE "CList/ShowHide"
-//temporarily disable the autohide feature v0.1.2.1+
-//wParam = lParam = 0
-//returns 0 on success, nonzero on failure
-//This service will restart the autohide timer, so if you need to keep the
-//window visible you'll have to be getting user input regularly and calling
-//this function each time
-#define MS_CLIST_PAUSEAUTOHIDE "CList/PauseAutoHide"
-
//sent when the group get modified (created, renamed or deleted)
//or contact is moving from group to group
//wParam = hContact - NULL if operation on group
diff --git a/include/m_clui.h b/include/m_clui.h index 903971ab52..bbda841f01 100644 --- a/include/m_clui.h +++ b/include/m_clui.h @@ -39,14 +39,6 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. //get ContactTree hwnd
#define MS_CLUI_GETHWNDTREE "CLUI/GetHwndTree"
-//change protocol-specific status indicators
-//wParam = new status
-//lParam = (LPARAM)(const char*)szProtocolID
-//returns 0 on success, nonzero on failure
-//protocol modules don't want to call this. They want
-//clist/protocolstatuschanged instead
-#define MS_CLUI_PROTOCOLSTATUSCHANGED "CLUI/ProtocolStatusChanged"
-
//a new group was created. Add it to the list
//wParam = (WPARAM)(HANDLE)hGroup
//lParam = newGroup
@@ -113,13 +105,6 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. //you do not need to explicitly sort the list
#define MS_CLUI_LISTENDREBUILD "CLUI/ListEndRebuild"
-//sort the contact list now
-//wParam = lParam = 0
-//returns 0 on success, nonzero on failure
-//sorts are buffered so you won't get this message lots of times if the list
-//needs to be re-sorted many times rapidly.
-#define MS_CLUI_SORTLIST "CLUI/SortList"
-
//Gets a load of capabilities for the loaded CLUI v0.1.2.1+
//wParam = capability, CLUICAPS_*
//lParam = 0
@@ -146,13 +131,6 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. #define CLUICAPS_FLAGS2 1 //Returns info about extra icons
//HIWORD is the first extra icon number, LOWORD is the extra icons count
-//LPARAMS for CLUICAPS_FLAGS2
-#define CLUIF2_PLUGININFO 1 //returns pointer to plugininfo
-#define CLUIF2_CLISTTYPE 2 // the genaration of list in chronologic
-// modern layered return 0x07 (assuming classic, mw, meta, nicer1, modern1, nicer++, modernLayered)
-// +0x0100 for unicode
-#define CLUIF2_EXTRACOLUMNCOUNT 3 // return max number of extra icon available to be set in main window
-
#define MS_CLUI_GETCAPS "CLUI/GetCaps"
//a contact is being dragged outside the main window v0.1.2.0+
|