summaryrefslogtreecommitdiff
path: root/protocols/NewsAggregator/Src/Services.cpp
diff options
context:
space:
mode:
authorKirill Volinsky <mataes2007@gmail.com>2012-09-06 19:45:03 +0000
committerKirill Volinsky <mataes2007@gmail.com>2012-09-06 19:45:03 +0000
commitcbc0195ed4cd5d6b1b5527dcec69400c536d6853 (patch)
tree75f5133976603e49ef8fc41955d963f1b83bcb14 /protocols/NewsAggregator/Src/Services.cpp
parent0519e0eb7195cc22eee68d7b352cd3507ba94db0 (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/Services.cpp')
-rw-r--r--protocols/NewsAggregator/Src/Services.cpp16
1 files changed, 11 insertions, 5 deletions
diff --git a/protocols/NewsAggregator/Src/Services.cpp b/protocols/NewsAggregator/Src/Services.cpp
index e1514ffe31..ed53a2a048 100644
--- a/protocols/NewsAggregator/Src/Services.cpp
+++ b/protocols/NewsAggregator/Src/Services.cpp
@@ -192,7 +192,7 @@ INT_PTR AddFeed(WPARAM wParam,LPARAM lParam)
return 0;
}
-INT_PTR ChangeFeed(WPARAM wParam,LPARAM lParam)
+INT_PTR ChangeFeed(WPARAM wParam, LPARAM lParam)
{
HANDLE hContact = (HANDLE) wParam;
HWND hChangeFeedDlg = WindowList_Find(hChangeFeedDlgList,hContact);
@@ -209,17 +209,17 @@ INT_PTR ChangeFeed(WPARAM wParam,LPARAM lParam)
return 0;
}
-INT_PTR ImportFeeds(WPARAM wParam,LPARAM lParam)
+INT_PTR ImportFeeds(WPARAM wParam, LPARAM lParam)
{
return 0;
}
-INT_PTR ExportFeeds(WPARAM wParam,LPARAM lParam)
+INT_PTR ExportFeeds(WPARAM wParam, LPARAM lParam)
{
return 0;
}
-INT_PTR CheckFeed(WPARAM wParam,LPARAM lParam)
+INT_PTR CheckFeed(WPARAM wParam, LPARAM lParam)
{
HANDLE hContact = (HANDLE)wParam;
if(IsMyContact(hContact))
@@ -229,7 +229,7 @@ INT_PTR CheckFeed(WPARAM wParam,LPARAM lParam)
return 0;
}
-INT_PTR NewsAggrGetAvatarInfo(WPARAM wParam,LPARAM lParam)
+INT_PTR NewsAggrGetAvatarInfo(WPARAM wParam, LPARAM lParam)
{
PROTO_AVATAR_INFORMATIONT* pai = (PROTO_AVATAR_INFORMATIONT*) lParam;
@@ -250,4 +250,10 @@ INT_PTR NewsAggrGetAvatarInfo(WPARAM wParam,LPARAM lParam)
}
DBFreeVariant(&dbv);
return GAIR_WAITFOR;
+}
+
+INT_PTR NewsAggrRecvMessage(WPARAM wParam, LPARAM lParam)
+{
+ CallService(MS_PROTO_RECVMSG, 0, lParam);
+ return 0;
} \ No newline at end of file