summaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authorAlexey Kulakov <panda75@bk.ru>2012-06-25 06:45:59 +0000
committerAlexey Kulakov <panda75@bk.ru>2012-06-25 06:45:59 +0000
commitdafffe73026dbbf0f36e7d910959951517cef937 (patch)
tree96318c2485123a60fa942ca9ec03121c1898f845 /plugins
parentd977f1728ac71776a7ec58c0cf40c13fd87340ba (diff)
removed deprecated header and links on it
git-svn-id: http://svn.miranda-ng.org/main/trunk@624 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins')
-rw-r--r--plugins/ExternalAPI/m_ticker.h50
-rw-r--r--plugins/Popup/src/headers.h1
-rw-r--r--plugins/mTextControl/src/headers.h11
3 files changed, 0 insertions, 62 deletions
diff --git a/plugins/ExternalAPI/m_ticker.h b/plugins/ExternalAPI/m_ticker.h
deleted file mode 100644
index ff4d8a7915..0000000000
--- a/plugins/ExternalAPI/m_ticker.h
+++ /dev/null
@@ -1,50 +0,0 @@
-#ifndef M_TICKER_H
-#define M_TICKER_H
-
-
-/* TICKER_ADD_STRING
-wParam = (WPARAM)(*TICKERDATA)TickerDataAddress (see below)
-lParam = 0... not used..
-returns (int)TickerID on success or 0 if it fails
-*/
-#define TICKER_ADD_STRING "Ticker/AddString"
-
-/* TICKER_ADD_SIMPLESTRING
-wParam = (char*) szMessage // the text to display
-lParam = (char*) szTooltip // the Items tooltip (can be NULL)
-this service function will use default values for the rest of the TICKERDATA values
-returns (int)TickerID on success or 0 if it fails
-*/
-#define TICKER_ADD_SIMPLESTRING "Ticker/AddSimpleString"
-
-/* TICKER_ADD_FROMPOPUPPLUGIN
-This should only be called from the popup plugin before (or after.. makes no difference)
-the popup is created and the user wants to display the ticker
-wParam = (WPARAM)(*POPUPDATA)PopUpDataAddress
-lParam = 0
-returns (int)TickerID on success or 0 if it fails
-*/
-#define TICKER_ADD_FROMPOPUPPLUGIN "Ticker/AddFromPopupPlugin"
-
-
-typedef struct {
- char* szMessage; // the message you want to display, will be copied to another mem address by me, so u can free your copy
- char* szTooltip; // a message to display in the items tooltip, can be NULL will be copied to another mem address by me, so u can free your copy
- COLORREF crForeground; // the foreground colour.. can be NULL
- COLORREF crBackground; // the background colour.. can be NULL
- WNDPROC PluginWindowProc; // for the window proc.. can be NULL -->- these are more for popup compatability but someone might find it usefull
- HANDLE hContact; // can be NULL -/
- void * PluginData; // other plugins might want this... -/
-} TICKERDATA, *LPTICKERDATA;
-
-
-
-
-
-
-
-
-
-
-
-#endif
diff --git a/plugins/Popup/src/headers.h b/plugins/Popup/src/headers.h
index 552eb01c31..ae36537fc9 100644
--- a/plugins/Popup/src/headers.h
+++ b/plugins/Popup/src/headers.h
@@ -132,7 +132,6 @@ Last change by : $Author: Merlin_de $
#define MTEXT_NOHELPERS
#endif // MTEXT_NOHELPERS
#include <m_text.h>
- #include <m_ticker.h>
#include <m_toolbar.h>
#include <m_toptoolbar.h>
#include <m_updater.h>
diff --git a/plugins/mTextControl/src/headers.h b/plugins/mTextControl/src/headers.h
index cbe1d455c1..e1a1388afc 100644
--- a/plugins/mTextControl/src/headers.h
+++ b/plugins/mTextControl/src/headers.h
@@ -76,13 +76,8 @@ extern "C" {
#include "m_text.h"
// API for other plugins
-// #include "../api/m_popup.h"
-// #include "../api/m_popupw.h"
#include "m_mathmodule.h"
#include <m_smileyadd.h>
-// #include "../api/m_nconvers.h"
-// #include "../api/m_ticker.h"
-// #include "../api/m_avatars.h"
#ifdef _cplusplus
};
#endif
@@ -96,18 +91,12 @@ extern PLUGININFOEX pluginInfoEx;
// Project headers
#include "version.h"
-//#include "gdiutils.h"
-//#include "bitmap_funcs.h"
-//#include "icons.h"
#include "services.h"
#include "textusers.h"
-//#include "options.h"
#include "richeditutils.h"
-//#include "IconOleObject.h"
#include "ImageDataObjectHlp.h"
#include "FormattedTextDraw.h"
#include "fancy_rtf.h"
-//#include "fancy.h"
#include "textcontrol.h"
#endif // __headers_h__