summaryrefslogtreecommitdiff
path: root/attache/version.h
diff options
context:
space:
mode:
Diffstat (limited to 'attache/version.h')
-rw-r--r--attache/version.h30
1 files changed, 30 insertions, 0 deletions
diff --git a/attache/version.h b/attache/version.h
new file mode 100644
index 0000000..041083e
--- /dev/null
+++ b/attache/version.h
@@ -0,0 +1,30 @@
+#ifndef __VERSION_H_INCLUDED
+#define __VERSION_H_INCLUDED
+
+#define MODULE "Attache"
+
+#define __MAJOR_VERSION 0
+#define __MINOR_VERSION 1
+#define __RELEASE_NUM 3
+#define __BUILD_NUM 1
+
+#define __FILEVERSION_STRING __MAJOR_VERSION,__MINOR_VERSION,__RELEASE_NUM,__BUILD_NUM
+#define __FILEVERSION_STRING_DOTS __MAJOR_VERSION.__MINOR_VERSION.__RELEASE_NUM.__BUILD_NUM
+#define __STRINGIFY(x) #x
+#define __VERSION_STRING __STRINGIFY(__FILEVERSION_STRING_DOTS)
+
+#define __DESC "Generate MiniDump debugging information on crash"
+#define __AUTHOR "Scott Ellis"
+#define __AUTHOREMAIL "mail@scottellis.com.au"
+#define __COPYRIGHT "© 2005,2006 Scott Ellis"
+#define __AUTHORWEB "http://www.scottellis.com.au"
+
+#ifdef _UNICODE
+#define __PLUGIN_NAME MODULE
+#else
+#define __PLUGIN_NAME MODULE
+#endif
+#define __FILENAME MODULE ".dll"
+
+
+#endif //__VERSION_H_INCLUDED