summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsje <sje@4f64403b-2f21-0410-a795-97e2b3489a10>2007-06-01 12:59:25 +0000
committersje <sje@4f64403b-2f21-0410-a795-97e2b3489a10>2007-06-01 12:59:25 +0000
commitb6f3ae7c54375c98d26d43acc2162f12f3475420 (patch)
tree301a332072e146e5e2b1ea8e07ab3ce36f45a467
parentb161a5ff7ad033a2c501c3c23144fc6a60890cf4 (diff)
pre 0.7 compatibility
git-svn-id: https://server.scottellis.com.au/svn/mim_plugs@196 4f64403b-2f21-0410-a795-97e2b3489a10
-rw-r--r--no_history/NoHistory.mdsp6
-rw-r--r--no_history/dllmain.cpp5
-rw-r--r--no_history/private.h2
3 files changed, 9 insertions, 4 deletions
diff --git a/no_history/NoHistory.mdsp b/no_history/NoHistory.mdsp
index c6de567..481aebb 100644
--- a/no_history/NoHistory.mdsp
+++ b/no_history/NoHistory.mdsp
@@ -95,8 +95,8 @@ extraResourceOptions=
1=resource.rc
[Other]
[History]
-dllmain.cpp,0
-..\..\protocols\sametime_meanwhile\sametime\sametime.cpp,21223
-common.h,512
options.cpp,8160
+common.h,481
+..\..\protocols\sametime_meanwhile\sametime\sametime.cpp,21164
+dllmain.cpp,0
private.h,278
diff --git a/no_history/dllmain.cpp b/no_history/dllmain.cpp
index 9a042ae..961ced8 100644
--- a/no_history/dllmain.cpp
+++ b/no_history/dllmain.cpp
@@ -60,6 +60,11 @@ extern "C" __declspec (dllexport) PLUGININFOEX* MirandaPluginInfoEx(DWORD mirand
return &pluginInfo;
}
+extern "C" __declspec (dllexport) PLUGININFO* MirandaPluginInfo(DWORD mirandaVersion) {
+ pluginInfo.cbSize = sizeof(PLUGININFO);
+ return (PLUGININFO*)&pluginInfo;
+}
+
static const MUUID interfaces[] = {MIID_NOHISTORY, MIID_LAST};
extern "C" __declspec(dllexport) const MUUID* MirandaPluginInterfaces(void) {
return interfaces;
diff --git a/no_history/private.h b/no_history/private.h
index 9474e7c..f78e5bc 100644
--- a/no_history/private.h
+++ b/no_history/private.h
@@ -5,7 +5,7 @@
#define VER_MAJOR 0
#define VER_MINOR 1
#define VER_RELEASE 0
-#define VER_BUILD 1
+#define VER_BUILD 2
#define __STRINGIZE(x) #x
#define VER_STRING __STRINGIZE( VER_MAJOR.VER_MINOR.VER_RELEASE.VER_BUILD )