summaryrefslogtreecommitdiff
path: root/xframes/xframes.cpp
diff options
context:
space:
mode:
authorsje <sje@4f64403b-2f21-0410-a795-97e2b3489a10>2007-06-01 12:14:31 +0000
committersje <sje@4f64403b-2f21-0410-a795-97e2b3489a10>2007-06-01 12:14:31 +0000
commit06025766fa8a3f7b2ba0c143c0abf633bde41120 (patch)
tree08adea064adbee060197bc0388ed168ead4dd302 /xframes/xframes.cpp
parent6c9e750d9fdb4fe0d521c791c79d360f3f351697 (diff)
pre 0.7 compatibility
git-svn-id: https://server.scottellis.com.au/svn/mim_plugs@193 4f64403b-2f21-0410-a795-97e2b3489a10
Diffstat (limited to 'xframes/xframes.cpp')
-rw-r--r--xframes/xframes.cpp8
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)
{