Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mumble-voip/mumble.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThorvald Natvig <slicer@users.sourceforge.net>2008-12-13 16:06:24 +0300
committerThorvald Natvig <slicer@users.sourceforge.net>2008-12-13 16:06:24 +0300
commit98da0f9ae4c0e373d4d3f8bb98589cf7420e71f4 (patch)
tree4a7631c00924787127d7219ec40e0a1c27462e70 /g15helper/g15helper.rc
parentf83821583a1e4cdda449cd11eb399844c673e198 (diff)
LCD Support [mkrautz]
git-svn-id: https://mumble.svn.sourceforge.net/svnroot/mumble/trunk@1356 05730e5d-ab1b-0410-a4ac-84af385074fa
Diffstat (limited to 'g15helper/g15helper.rc')
-rw-r--r--g15helper/g15helper.rc46
1 files changed, 46 insertions, 0 deletions
diff --git a/g15helper/g15helper.rc b/g15helper/g15helper.rc
new file mode 100644
index 000000000..2a60c94e3
--- /dev/null
+++ b/g15helper/g15helper.rc
@@ -0,0 +1,46 @@
+#include <winver.h>
+
+IDI_ICON1 ICON DISCARDABLE "..\\icons\\g15helper.ico"
+
+#ifndef DEBUG
+#define VER_DEBUG 0L
+#else
+#define VER_DEBUG VS_FF_DEBUG
+#endif
+
+#ifndef RELEASE_BUILD
+#define VER_RELEASE VS_FF_SPECIALBUILD|VS_FF_PRERELEASE
+#else
+#define VER_RELEASE 0L
+#endif
+
+VS_VERSION_INFO VERSIONINFO
+ FILEVERSION 1,1,7,0
+ PRODUCTVERSION 1,1,7,0
+ FILEFLAGSMASK VS_FFI_FILEFLAGSMASK
+ FILEFLAGS (VER_DEBUG|VER_RELEASE)
+ FILEOS VOS_NT_WINDOWS32
+ FILETYPE VFT_APP
+ FILESUBTYPE 0L
+ BEGIN
+ BLOCK "StringFileInfo"
+ BEGIN
+ BLOCK "040904E4"
+ BEGIN
+ VALUE "CompanyName", "Mikkel Krautz"
+ VALUE "FileDescription", "Mumble G15 LCD Helper"
+ VALUE "FileVersion", "1.1.7"
+ VALUE "ProductVersion", "1.1.7"
+ VALUE "LegalCopyright", "Copyright (C) 2008, Mikkel Krautz <mikkel@krautz.dk>"
+ VALUE "OriginalFilename", "mumble-g15-helper.exe"
+ VALUE "ProductName", "Mumble G15 LCD Helper"
+#ifndef RELEASE_BUILD
+ VALUE "SpecialBuild", "Snapshot development release"
+#endif
+ END
+ END
+ BLOCK "VarFileInfo"
+ BEGIN
+ VALUE "Translation", 0x409, 1252
+ END
+ END