diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2012-09-06 19:45:03 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2012-09-06 19:45:03 +0000 |
commit | cbc0195ed4cd5d6b1b5527dcec69400c536d6853 (patch) | |
tree | 75f5133976603e49ef8fc41955d963f1b83bcb14 /protocols/NewsAggregator/Src/NewsAggregator.cpp | |
parent | 0519e0eb7195cc22eee68d7b352cd3507ba94db0 (diff) |
fixed destroying some messages
git-svn-id: http://svn.miranda-ng.org/main/trunk@1541 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/NewsAggregator/Src/NewsAggregator.cpp')
-rw-r--r-- | protocols/NewsAggregator/Src/NewsAggregator.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/protocols/NewsAggregator/Src/NewsAggregator.cpp b/protocols/NewsAggregator/Src/NewsAggregator.cpp index c6d1cb735e..3c05847739 100644 --- a/protocols/NewsAggregator/Src/NewsAggregator.cpp +++ b/protocols/NewsAggregator/Src/NewsAggregator.cpp @@ -23,7 +23,7 @@ HINSTANCE hInst = NULL; int hLangpack;
HANDLE hOptHook = NULL, hLoadHook = NULL, hOnPreShutdown = NULL, hPrebuildMenuHook = NULL, hPackUpdaterFolder = NULL;
-HANDLE hProtoService[7];
+HANDLE hProtoService[8];
HWND hAddFeedDlg;
HANDLE hChangeFeedDlgList = NULL;
XML_API xi = {0};
@@ -99,6 +99,7 @@ extern "C" __declspec(dllexport) int Load(void) hProtoService[4] = CreateProtoServiceFunction(MODULE, PS_LOADICON, NewsAggrLoadIcon);
hProtoService[5] = CreateProtoServiceFunction(MODULE, PSS_GETINFO, NewsAggrGetInfo);
hProtoService[6] = CreateProtoServiceFunction(MODULE, PS_GETAVATARINFOT, NewsAggrGetAvatarInfo);
+ hProtoService[7] = CreateProtoServiceFunction(MODULE, PSR_MESSAGE, NewsAggrRecvMessage);
hService[0] = CreateServiceFunction(MS_NEWSAGGR_CHECKALLFEEDS, CheckAllFeeds);
hService[1] = CreateServiceFunction(MS_NEWSAGGR_ADDFEED, AddFeed);
|