summaryrefslogtreecommitdiff
path: root/plugins/Clist_blind
diff options
context:
space:
mode:
authorGeorge Hazan <ghazan@miranda.im>2018-05-29 14:56:41 +0300
committerGeorge Hazan <ghazan@miranda.im>2018-05-29 14:56:41 +0300
commit08aa1c5329918dcc1d3a0704efb5f81c43680a78 (patch)
tree0fe6b63fc97bf2c0f2c1d1b7f741d75120701e17 /plugins/Clist_blind
parent51e1e489382e8f66d489b8bd68eb4e0711409cb7 (diff)
ancient perversion removed: function CListInitialise as the special entry point for contact lists (not to mix them with usual plugins)
Diffstat (limited to 'plugins/Clist_blind')
-rw-r--r--plugins/Clist_blind/src/init.cpp10
1 files changed, 1 insertions, 9 deletions
diff --git a/plugins/Clist_blind/src/init.cpp b/plugins/Clist_blind/src/init.cpp
index cb83fe7179..69d8883d96 100644
--- a/plugins/Clist_blind/src/init.cpp
+++ b/plugins/Clist_blind/src/init.cpp
@@ -115,7 +115,7 @@ static INT_PTR GetStatusMode(WPARAM, LPARAM)
/////////////////////////////////////////////////////////////////////////////////////////
// main clist initialization routine
-extern "C" int __declspec(dllexport) CListInitialise()
+int CMPlugin::Load()
{
g_bSortByStatus = db_get_b(NULL, "CList", "SortByStatus", SETTING_SORTBYSTATUS_DEFAULT);
g_bSortByProto = db_get_b(NULL, "CList", "SortByProto", SETTING_SORTBYPROTO_DEFAULT);
@@ -146,14 +146,6 @@ extern "C" int __declspec(dllexport) CListInitialise()
}
/////////////////////////////////////////////////////////////////////////////////////////
-// a plugin loader aware of CList exports will never call this.
-
-int CMPlugin::Load()
-{
- return 1;
-}
-
-/////////////////////////////////////////////////////////////////////////////////////////
wchar_t* MyDBGetContactSettingTString(MCONTACT hContact, char* module, char* setting, wchar_t* out, size_t len, wchar_t *def)
{