summaryrefslogtreecommitdiff
path: root/popup/include_API/m_ticker.h
diff options
context:
space:
mode:
authormataes2007 <mataes2007@e753b5eb-9565-29b2-b5c5-2cc6f99dfbcb>2011-04-26 19:58:44 +0000
committermataes2007 <mataes2007@e753b5eb-9565-29b2-b5c5-2cc6f99dfbcb>2011-04-26 19:58:44 +0000
commit7ea454b966c916559811d7ca984416a269d4e4d0 (patch)
treee34c88e3ff36feaca3d5d7086fc2740fdbdff670 /popup/include_API/m_ticker.h
parent285d0b93bc5f99c565dab66e86b8130f0b56d150 (diff)
move api to folder
git-svn-id: http://miranda-plugins.googlecode.com/svn/trunk@44 e753b5eb-9565-29b2-b5c5-2cc6f99dfbcb
Diffstat (limited to 'popup/include_API/m_ticker.h')
-rw-r--r--popup/include_API/m_ticker.h50
1 files changed, 0 insertions, 50 deletions
diff --git a/popup/include_API/m_ticker.h b/popup/include_API/m_ticker.h
deleted file mode 100644
index ff4d8a7..0000000
--- a/popup/include_API/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