diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2008-04-20 21:05:49 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2008-04-20 21:05:49 +0000 |
commit | cd87c3d447a1480e2f818b93c67f4dbed897eb74 (patch) | |
tree | d49dec8f420548b74feccba8a1f0ac682814ae58 /win/resource.rc | |
parent | e5131f92b3b88ae7646da9a9972b1bbb5855f874 (diff) |
Add hand-crafted resource script, contains version information and icon definition
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@9556 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'win/resource.rc')
-rw-r--r-- | win/resource.rc | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/win/resource.rc b/win/resource.rc new file mode 100644 index 000000000..88a7666d6 --- /dev/null +++ b/win/resource.rc @@ -0,0 +1,38 @@ +101 ICON "inspircd.ico"
+
+1 VERSIONINFO
+ FILEVERSION 1,2,0,0
+ PRODUCTVERSION 1,2,0,0
+ FILEFLAGSMASK 0x3fL
+#ifdef _DEBUG
+ FILEFLAGS 0x1L
+#else
+ FILEFLAGS 0x0L
+#endif
+ FILEOS 0x40004L
+ FILETYPE 0x1L
+ FILESUBTYPE 0x0L
+BEGIN
+ BLOCK "StringFileInfo"
+ BEGIN
+ BLOCK "040904b0"
+ BEGIN
+ VALUE "Comments", "InspIRCd 1.2 IRC Daemon\0"
+ VALUE "CompanyName", "InspIRCd Development Team\0"
+ VALUE "FileDescription", "InspIRCd\0"
+ VALUE "FileVersion", "1, 2, 0, 0\0"
+ VALUE "InternalName", "InspIRCd\0"
+ VALUE "LegalCopyright", "Copyright (c) 2008 InspIRCd Development Team\0"
+ VALUE "LegalTrademarks", "\0"
+ VALUE "OriginalFilename", "inspircd.exe\0"
+ VALUE "PrivateBuild", "\0"
+ VALUE "ProductName", "InspIRCd - The Inspire IRC Daemon\0"
+ VALUE "ProductVersion", "1, 2, 0, 0\0"
+ VALUE "SpecialBuild", "\0"
+ END
+ END
+ BLOCK "VarFileInfo"
+ BEGIN
+ VALUE "Translation", 0x809, 1200
+ END
+END
|