diff options
author | George Hazan <george.hazan@gmail.com> | 2012-07-06 05:56:11 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2012-07-06 05:56:11 +0000 |
commit | 488aa433f119560b13c1b6234508ea6dda29c25a (patch) | |
tree | 4167d0853872fc5563f9490848158809de6edd87 /plugins/UserInfoEx/ex_import | |
parent | 2d72bd7549e0ffb36a3d3391ca979b75a365f5de (diff) |
user-defined service creation isn't needed anymore
git-svn-id: http://svn.miranda-ng.org/main/trunk@781 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/UserInfoEx/ex_import')
-rw-r--r-- | plugins/UserInfoEx/ex_import/svc_ExImport.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/UserInfoEx/ex_import/svc_ExImport.cpp b/plugins/UserInfoEx/ex_import/svc_ExImport.cpp index b44f455cb8..35bb59c3b9 100644 --- a/plugins/UserInfoEx/ex_import/svc_ExImport.cpp +++ b/plugins/UserInfoEx/ex_import/svc_ExImport.cpp @@ -374,9 +374,9 @@ INT_PTR svcExIm_Account_Service(WPARAM wParam, LPARAM lParam) **/
VOID SvcExImport_LoadModule()
{
- myCreateServiceFunction(MS_USERINFO_VCARD_EXPORTALL, svcExIm_MainExport_Service);
- myCreateServiceFunction(MS_USERINFO_VCARD_IMPORTALL, svcExIm_MainImport_Service);
- myCreateServiceFunction(MS_USERINFO_VCARD_EXPORT, svcExIm_ContactExport_Service);
- myCreateServiceFunction(MS_USERINFO_VCARD_IMPORT, svcExIm_ContactImport_Service);
+ CreateServiceFunction(MS_USERINFO_VCARD_EXPORTALL, svcExIm_MainExport_Service);
+ CreateServiceFunction(MS_USERINFO_VCARD_IMPORTALL, svcExIm_MainImport_Service);
+ CreateServiceFunction(MS_USERINFO_VCARD_EXPORT, svcExIm_ContactExport_Service);
+ CreateServiceFunction(MS_USERINFO_VCARD_IMPORT, svcExIm_ContactImport_Service);
return;
}
|