diff options
author | sje <sje@4f64403b-2f21-0410-a795-97e2b3489a10> | 2007-03-19 11:11:43 +0000 |
---|---|---|
committer | sje <sje@4f64403b-2f21-0410-a795-97e2b3489a10> | 2007-03-19 11:11:43 +0000 |
commit | cc04e0a66468b3d34f7b1cc7c9bec35d921e6c86 (patch) | |
tree | aa8b2254e362d795af769a7636563a7df09d4f05 | |
parent | c0d50d8bdbd58d53eac11e8874633964bf7f84d4 (diff) |
fixed m_updater.h
git-svn-id: https://server.scottellis.com.au/svn/mim_plugs@134 4f64403b-2f21-0410-a795-97e2b3489a10
-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"
|