diff options
Diffstat (limited to 'last_contact/LastContact.cpp')
-rw-r--r-- | last_contact/LastContact.cpp | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/last_contact/LastContact.cpp b/last_contact/LastContact.cpp index 6cf9e09..7057b7e 100644 --- a/last_contact/LastContact.cpp +++ b/last_contact/LastContact.cpp @@ -52,7 +52,7 @@ void stack_update(MessageWindowEventData *data) { PLUGININFOEX pluginInfo={
sizeof(PLUGININFOEX),
MODULE,
- PLUGIN_MAKE_VERSION(0,0,1,0),
+ PLUGIN_MAKE_VERSION(0,0,1,1),
"Re-open the last open message window using a configurable hot key.",
"Scott Ellis",
"mail@scottellis.com.au",
@@ -69,6 +69,12 @@ extern "C" BOOL WINAPI DllMain(HINSTANCE hinstDLL,DWORD fdwReason,LPVOID lpvRese return TRUE;
}
+extern "C" __declspec(dllexport) PLUGININFO* MirandaPluginInfo(DWORD mirandaVersion)
+{
+ pluginInfo.cbSize = sizeof(PLUGININFO);
+ return (PLUGININFO*)&pluginInfo;
+}
+
extern "C" __declspec(dllexport) PLUGININFOEX* MirandaPluginInfoEx(DWORD mirandaVersion)
{
return &pluginInfo;
|