From b1db27c61150e1313a537d1de009ec26bae414ab Mon Sep 17 00:00:00 2001 From: George Hazan Date: Sun, 31 May 2015 22:09:02 +0000 Subject: - CreateProtoServiceFunction() moved into mir_core.dll instead of inlining - all old protocols moved on it; - code cleaning; git-svn-id: http://svn.miranda-ng.org/main/trunk@13953 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/GmailNotifier/src/main.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'plugins/GmailNotifier/src') diff --git a/plugins/GmailNotifier/src/main.cpp b/plugins/GmailNotifier/src/main.cpp index 992b2cc633..dc749998b4 100644 --- a/plugins/GmailNotifier/src/main.cpp +++ b/plugins/GmailNotifier/src/main.cpp @@ -95,9 +95,9 @@ extern "C" int __declspec(dllexport) Load() pd.type = PROTOTYPE_VIRTUAL; CallService(MS_PROTO_REGISTERMODULE, 0, (LPARAM)&pd); - CreateServiceFunction(pluginName PS_GETCAPS, GetCaps); - CreateServiceFunction(pluginName PS_GETSTATUS, GetStatus); - CreateServiceFunction(pluginName PS_GETNAME, GetName); + CreateProtoServiceFunction(pluginName, PS_GETCAPS, GetCaps); + CreateProtoServiceFunction(pluginName, PS_GETSTATUS, GetStatus); + CreateProtoServiceFunction(pluginName, PS_GETNAME, GetName); CreateServiceFunction("GmailMNotifier/Notifying", Notifying); opt.circleTime = db_get_dw(NULL, pluginName, "circleTime", 30); -- cgit v1.2.3