diff options
author | sje <sje@4f64403b-2f21-0410-a795-97e2b3489a10> | 2007-06-01 07:26:08 +0000 |
---|---|---|
committer | sje <sje@4f64403b-2f21-0410-a795-97e2b3489a10> | 2007-06-01 07:26:08 +0000 |
commit | b0cb3bc1afc50b126575ce931b42ac2bd6c89c0a (patch) | |
tree | e878aeb4c7857bcd18af3aeeea77792a4997fca3 /worldtime/WorldTime.cpp | |
parent | e632de12c947e1843cf3d83ce219987ca90c7703 (diff) |
loadable with pre 0.7
git-svn-id: https://server.scottellis.com.au/svn/mim_plugs@190 4f64403b-2f21-0410-a795-97e2b3489a10
Diffstat (limited to 'worldtime/WorldTime.cpp')
-rw-r--r-- | worldtime/WorldTime.cpp | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/worldtime/WorldTime.cpp b/worldtime/WorldTime.cpp index dc45dad..8b1c839 100644 --- a/worldtime/WorldTime.cpp +++ b/worldtime/WorldTime.cpp @@ -7,7 +7,7 @@ PLUGINLINK *pluginLink; PLUGININFOEX pluginInfo={
sizeof(PLUGININFOEX),
"World Time",
- PLUGIN_MAKE_VERSION(0, 3, 0, 1),
+ PLUGIN_MAKE_VERSION(0, 3, 0, 2),
"Display world times.",
"Scott Ellis",
"mail@scottellis.com.au",
@@ -46,6 +46,12 @@ extern "C" WORLDTIME_API PLUGININFOEX* MirandaPluginInfoEx(DWORD mirandaVersion) return &pluginInfo;
}
+extern "C" WORLDTIME_API PLUGININFO* MirandaPluginInfo(DWORD mirandaVersion)
+{
+ pluginInfo.cbSize = sizeof(PLUGININFO);
+ return (PLUGININFO*)&pluginInfo;
+}
+
static const MUUID interfaces[] = {MIID_WORLDTIME, MIID_LAST};
extern "C" __declspec(dllexport) const MUUID* MirandaPluginInterfaces(void)
{
|