summaryrefslogtreecommitdiff
path: root/resource.rc
diff options
context:
space:
mode:
authorDaniel Wilhelm <daniel@wili.li>2014-04-18 17:23:19 +0200
committerDaniel Wilhelm <daniel@wili.li>2014-04-18 17:23:19 +0200
commit0887aee8c54d0ed51bb2031431e2bcdafebb4c6e (patch)
tree69537ceb9787bb25ac363cc4e6cdaf0804d78363 /resource.rc
parent5.12 (diff)
downloadFreeFileSync-0887aee8c54d0ed51bb2031431e2bcdafebb4c6e.tar.gz
FreeFileSync-0887aee8c54d0ed51bb2031431e2bcdafebb4c6e.tar.bz2
FreeFileSync-0887aee8c54d0ed51bb2031431e2bcdafebb4c6e.zip
5.13
Diffstat (limited to 'resource.rc')
-rw-r--r--resource.rc51
1 files changed, 0 insertions, 51 deletions
diff --git a/resource.rc b/resource.rc
deleted file mode 100644
index bf62d7b2..00000000
--- a/resource.rc
+++ /dev/null
@@ -1,51 +0,0 @@
-#define IDR_VERSION1 1
-
-#include <Winver.h>
-#include "version/version.rc"
-
-#define wxUSE_NO_MANIFEST 1 //lame resource compiler requires us to define an integer here
-#include <wx/msw/wx.rc>
-/*
-Reasons to NOT use the wxWidgets manifest file:
- 1. beginning with VC11 we get linking error "CVTRES : fatal error CVT1100: duplicate resource. type:MANIFEST, name:1, language:0x0409"
- due to "#define wxMANIFEST_ID 1" in wx.rc. Using another number doesn't integrate the manifest correctly for VC2010 compilers.
- 2. it is missing the "requestedExecutionLevel" element. Consequently UAC virtualization will be active for a 32 bit executable started in user mode
-*/
-
-//MSDN on manifests: http://msdn.microsoft.com/en-us/library/bb756929.aspx
-#define MANIFEST_RESOURCE_ID 1
-#if defined(WX_CPU_AMD64) //check for 64 bit *first*
-MANIFEST_RESOURCE_ID RT_MANIFEST "amd64.manifest"
-#elif defined(WX_CPU_X86)
-MANIFEST_RESOURCE_ID RT_MANIFEST "win32.manifest"
-#else
-#error What is going on?
-#endif
-
-
-A_PROGRAM_ICON ICON DISCARDABLE "lib/FreeFileSync.ico"
-B_BATCH_ICON ICON DISCARDABLE "lib/Batch.ico"
-C_SYNC_DB_ICON ICON DISCARDABLE "lib/SyncDB.ico"
-
-IDR_VERSION1 VERSIONINFO
-FILEVERSION FREEFILESYNC_VER
-PRODUCTVERSION FREEFILESYNC_VER
-FILEOS VOS__WINDOWS32
-FILETYPE VFT_APP
-BEGIN
- BLOCK "StringFileInfo"
- BEGIN
- BLOCK "FFFF04B0"
- BEGIN
- VALUE "FileDescription", "Folder Comparison and Synchronization\0"
- VALUE "FileVersion", FREEFILESYNC_VER_STR
- VALUE "ProductName", "FreeFileSync\0"
- VALUE "ProductVersion", FREEFILESYNC_VER_STR
- VALUE "LegalCopyright", "Zenju - All Rights Reserved\0"
- END
- END
- BLOCK "VarFileInfo"
- BEGIN
- VALUE "Translation", 0xFFFF, 0x04B0
- END
-END
bgstack15