diff options
author | (no author) <(no author)@4f64403b-2f21-0410-a795-97e2b3489a10> | 2010-10-05 06:07:45 +0000 |
---|---|---|
committer | (no author) <(no author)@4f64403b-2f21-0410-a795-97e2b3489a10> | 2010-10-05 06:07:45 +0000 |
commit | df46444e19125a10387b7d8cfc424ae918d851b3 (patch) | |
tree | fe4c2648be696d422ce8d562f593b2dd35d1b533 | |
parent | f1c2d0f970b708aa26ab14dc79523b81b65b4b53 (diff) |
Updated plugin name
git-svn-id: https://server.scottellis.com.au/svn/mim_plugs@545 4f64403b-2f21-0410-a795-97e2b3489a10
-rw-r--r-- | tipper/version.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/tipper/version.h b/tipper/version.h index 8b0ebac..5c78925 100644 --- a/tipper/version.h +++ b/tipper/version.h @@ -17,7 +17,13 @@ #define __COPYRIGHT "© 2005,2006 Scott Ellis"
#define __AUTHORWEB "http://www.scottellis.com.au"
-#define __PLUGIN_NAME "Tipper"
+#ifdef _WIN64
+#define __PLUGIN_NAME "Tipper (x64)"
+#elif _UNICODE
+#define __PLUGIN_NAME "Tipper (Unicode)"
+#else
+#define __PLUGIN_NAME "Tipper (ANSI)"
+#endif
#define __FILENAME "tipper.dll"
#endif //__VERSION_H_INCLUDED
|