diff options
Diffstat (limited to 'plugins/FileAsMessage/src/main.cpp')
-rw-r--r-- | plugins/FileAsMessage/src/main.cpp | 19 |
1 files changed, 3 insertions, 16 deletions
diff --git a/plugins/FileAsMessage/src/main.cpp b/plugins/FileAsMessage/src/main.cpp index a0b7a37e05..213c64d6de 100644 --- a/plugins/FileAsMessage/src/main.cpp +++ b/plugins/FileAsMessage/src/main.cpp @@ -148,21 +148,8 @@ INT_PTR OnRecvMessage(WPARAM wParam, LPARAM lParam) return 0;
}
-int OnOptInitialise(WPARAM wParam, LPARAM)
-{
- OPTIONSDIALOGPAGE odp = {};
- odp.pszTemplate = MAKEINTRESOURCEA(IDD_OPTIONS);
- odp.szTitle.a = SERVICE_TITLE;
- odp.szGroup.a = LPGEN("Events");
- odp.flags = ODPF_BOLDGROUPS;
- odp.pfnDlgProc = OptionsDlgProc;
- g_plugin.addOptions(wParam, &odp);
- return 0;
-}
-
-//
+/////////////////////////////////////////////////////////////////////////////////////////
// Startup initializing
-//
static int OnModulesLoaded(WPARAM, LPARAM)
{
@@ -204,10 +191,10 @@ int CMPlugin::Load() return 0;
}
-//
+/////////////////////////////////////////////////////////////////////////////////////////
// Unload()
// Called by Miranda when Plugin is unloaded.
-//
+
int CMPlugin::Unload()
{
WindowList_Destroy(hFileList);
|