diff options
Diffstat (limited to 'fingerprint_mod/version.rc')
-rw-r--r-- | fingerprint_mod/version.rc | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/fingerprint_mod/version.rc b/fingerprint_mod/version.rc new file mode 100644 index 0000000..3143537 --- /dev/null +++ b/fingerprint_mod/version.rc @@ -0,0 +1,41 @@ +
+#include <windows.h>
+#include "version.h"
+
+/////////////////////////////////////////////////////////////////////////////
+//
+// Version
+//
+
+VS_VERSION_INFO VERSIONINFO
+ FILEVERSION __FILEVERSION_STRING
+ PRODUCTVERSION __FILEVERSION_STRING
+ FILEFLAGSMASK 0x17L
+#ifdef _DEBUG
+ FILEFLAGS 0x1L
+#else
+ FILEFLAGS 0x0L
+#endif
+ FILEOS 0x4L
+ FILETYPE 0x2L
+ FILESUBTYPE 0x0L
+BEGIN
+ BLOCK "StringFileInfo"
+ BEGIN
+ BLOCK "041904b0"
+ BEGIN
+ VALUE "FileDescription", "Fingerprint Mod client version icons module"
+ VALUE "FileVersion", __VERSION_STRING
+ VALUE "InternalName", "fingerprint mod"
+ VALUE "LegalCopyright", "Copyright (C) 2006-2007 FYR, Bio, Faith Healer"
+ VALUE "OriginalFilename", "fingerprint.dll"
+ VALUE "ProductName", "Fingerprint Mod client version icons module"
+ VALUE "ProductVersion", __VERSION_STRING
+ END
+ END
+ BLOCK "VarFileInfo"
+ BEGIN
+ VALUE "Translation", 0x419, 1200
+ END
+END
+
|