diff options
Diffstat (limited to 'tipper/version.h')
-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
|