diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2013-10-15 11:45:00 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2013-10-15 11:45:00 +0000 |
commit | 57d7a593cb444941ade06bde7911aaa77d431cc4 (patch) | |
tree | ee2d415eeaa421c99854173b3755ff7e6ff1a535 /plugins/ExternalAPI/delphi | |
parent | 7e54472de6322d6929874dc8acb66229590d250f (diff) |
code cleanup
registermodule service removed
git-svn-id: http://svn.miranda-ng.org/main/trunk@6497 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/ExternalAPI/delphi')
-rw-r--r-- | plugins/ExternalAPI/delphi/m_dbeditor.inc | 21 | ||||
-rw-r--r-- | plugins/ExternalAPI/delphi/m_rssnews.inc | 51 |
2 files changed, 0 insertions, 72 deletions
diff --git a/plugins/ExternalAPI/delphi/m_dbeditor.inc b/plugins/ExternalAPI/delphi/m_dbeditor.inc index 60530a1e61..e6e9a0c5c8 100644 --- a/plugins/ExternalAPI/delphi/m_dbeditor.inc +++ b/plugins/ExternalAPI/delphi/m_dbeditor.inc @@ -3,27 +3,6 @@ const
{
- wParam: Module name
- lParam: 0
- Affect: Register single module as 'known'
- Note: must be used after or in ME_SYSTEM_MODULESLOADED
-}
- MS_DBEDIT_REGISTERSINGLEMODULE:PAnsiChar = 'DBEditorpp/RegisterSingleModule';
-
-{
- wParam: array with module names
- lParam: count of module names
- Affect: Register modules as 'known'
- Note: must be used after or in ME_SYSTEM_MODULESLOADED
- Example:
- var mods:array [0..2] = ('Module1','Module2','Module3');
- ...
- CallService(MS_DBEDIT_REGISTERMODULE,WPARAM(@mods),3);
-
-}
- MS_DBEDIT_REGISTERMODULE:PAnsiChar = 'DBEditorpp/RegisterModule';
-
-{
wParam: hContact
lParam: 0
Affect: Open user tree in DBE++
diff --git a/plugins/ExternalAPI/delphi/m_rssnews.inc b/plugins/ExternalAPI/delphi/m_rssnews.inc deleted file mode 100644 index cfe4fef5b3..0000000000 --- a/plugins/ExternalAPI/delphi/m_rssnews.inc +++ /dev/null @@ -1,51 +0,0 @@ -{
- RSSNews plugin
- by Angelo Luiz Tartari
-}
-
-{$IFNDEF M_RSSNEWS}
-{$DEFINE M_RSSNEWS}
-
-const
-
-(*
- Retrieve news.
- wParam = (WPARAM)(HANDLE)hContact
- lParam = 0
- Returns: 0 on success, -1 on error.
-*)
- MS_RSSNEWS_GETNEWS = 'RSSNews/GetNews';
-
-(*
- Retrieve news (all feeds).
- wParam = 0
- lParam = 0
- Returns: 0 on success, -1 on error.
-*)
- MS_RSSNEWS_GETALLNEWS = 'RSSNews/GetAllNews';
-
-(*
- Brings up the add new feed dialog.
- wParam = 0
- lParam = 0
- Returns: 0 on success, -1 on error.
-*)
- MS_RSSNEWS_ADDNEWFEED = 'RSSNews/AddNewFeed';
-
-(*
- Brings up the import dialog.
- wParam = 0
- lParam = 0
- Returns: 0 on success, -1 on error.
-*)
- MS_RSSNEWS_IMPORT = 'RSSNews/Import';
-
-(*
- Brings up the export dialog.
- wParam = 0
- lParam = 0
- Returns: 0 on success, -1 on error.
-*)
- MS_RSSNEWS_EXPORT = 'RSSNews/Export';
-
-{$ENDIF}
|