diff options
-rw-r--r-- | no_history/NoHistory.mdsp | 6 | ||||
-rw-r--r-- | no_history/dllmain.cpp | 5 | ||||
-rw-r--r-- | no_history/private.h | 2 |
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 )
|