diff options
-rw-r--r-- | updater/Docs/m_updater.h | 4 | ||||
-rw-r--r-- | updater/m_updater.h | 4 | ||||
-rw-r--r-- | updater/version.h | 4 |
3 files changed, 8 insertions, 4 deletions
diff --git a/updater/Docs/m_updater.h b/updater/Docs/m_updater.h index 371b743..fdb331b 100644 --- a/updater/Docs/m_updater.h +++ b/updater/Docs/m_updater.h @@ -63,6 +63,10 @@ __inline static char *CreateVersionStringPlugin(PLUGININFO *pluginInfo, char *bu return CreateVersionString(pluginInfo->version, buf);
}
+__inline static char *CreateVersionStringPlugin(PLUGININFOEX *pluginInfo, char *buf) {
+ return CreateVersionString(pluginInfo->version, buf);
+}
+
// register the 'easy' way - use this method if you have no beta URL and the plugin is on the miranda file listing
// NOTE: the plugin version string on the file listing must be the string version of the version in pluginInfo (i.e. 0.0.0.1,
diff --git a/updater/m_updater.h b/updater/m_updater.h index 371b743..fdb331b 100644 --- a/updater/m_updater.h +++ b/updater/m_updater.h @@ -63,6 +63,10 @@ __inline static char *CreateVersionStringPlugin(PLUGININFO *pluginInfo, char *bu return CreateVersionString(pluginInfo->version, buf);
}
+__inline static char *CreateVersionStringPlugin(PLUGININFOEX *pluginInfo, char *buf) {
+ return CreateVersionString(pluginInfo->version, buf);
+}
+
// register the 'easy' way - use this method if you have no beta URL and the plugin is on the miranda file listing
// NOTE: the plugin version string on the file listing must be the string version of the version in pluginInfo (i.e. 0.0.0.1,
diff --git a/updater/version.h b/updater/version.h index 0e355e7..96958fb 100644 --- a/updater/version.h +++ b/updater/version.h @@ -18,11 +18,7 @@ #define __COPYRIGHT "© 2005,2006 Scott Ellis"
#define __AUTHORWEB "http://www.scottellis.com.au"
-#ifdef _UNICODE
-#define __PLUGIN_NAME "Updater (Unicode)"
-#else
#define __PLUGIN_NAME "Updater"
-#endif
#define __FILENAME "updater.dll"
|