diff options
Diffstat (limited to 'xframes/xframes.cpp')
-rw-r--r-- | xframes/xframes.cpp | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/xframes/xframes.cpp b/xframes/xframes.cpp index 3708211..1d446c4 100644 --- a/xframes/xframes.cpp +++ b/xframes/xframes.cpp @@ -23,7 +23,7 @@ DWORD focusTimerId = 0; PLUGININFOEX pluginInfo={
sizeof(PLUGININFOEX),
"XFrames",
- PLUGIN_MAKE_VERSION(0,1,0,0),
+ PLUGIN_MAKE_VERSION(0,1,0,1),
"External frames support",
"Scott Ellis",
"mail@scottellis.com.au",
@@ -47,6 +47,12 @@ extern "C" __declspec(dllexport) PLUGININFOEX* MirandaPluginInfoEx(DWORD miranda return &pluginInfo;
}
+extern "C" __declspec(dllexport) PLUGININFO* MirandaPluginInfo(DWORD mirandaVersion)
+{
+ pluginInfo.cbSize = sizeof(PLUGININFO);
+ return (PLUGININFO*)&pluginInfo;
+}
+
static const MUUID interfaces[] = {MIID_XFRAMES, MIID_LAST};
extern "C" __declspec(dllexport) const MUUID* MirandaPluginInterfaces(void)
{
|