changeset 17:9ada6eb824d9

Added support for using XP/Vista/7 themes.
author Brian Smith <brian@dbsoft.org>
date Thu, 17 Mar 2011 12:49:58 -0500
parents 069e301d5980
children d0e1b7ca1c26
files makefile.vc win/dmail.exe.x64.manifest win/dmail.exe.x86.manifest
diffstat 3 files changed, 45 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/makefile.vc	Thu Mar 17 11:02:11 2011 -0500
+++ b/makefile.vc	Thu Mar 17 12:49:58 2011 -0500
@@ -65,7 +65,7 @@
 $(LIBS)
 dmailw.res
 <<
-	mt.exe /manifest dmail.exe.manifest /outputresource:dmail.exe;1
+	mt.exe /manifest dmail.exe.manifest win\dmail.exe.$(TARGET_CPU).manifest /outputresource:dmail.exe;1
         
 .c.obj:
 	$(CC) $(CFLAGS) $(CFLAGS_DEBUG) $(CFLAGS_COMPILE) $*.c
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/win/dmail.exe.x64.manifest	Thu Mar 17 12:49:58 2011 -0500
@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
+<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
+<assemblyIdentity
+    version="0.5.0.0"
+    processorArchitecture="AMD64"
+    name="dmail"
+    type="win32"
+/>
+<description>Dynamic Mail</description>
+<dependency>
+    <dependentAssembly>
+        <assemblyIdentity
+            type="win32"
+            name="Microsoft.Windows.Common-Controls"
+            version="6.0.0.0"
+            processorArchitecture="AMD64"
+            publicKeyToken="6595b64144ccf1df"
+            language="*"
+        />
+    </dependentAssembly>
+</dependency>
+</assembly>
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/win/dmail.exe.x86.manifest	Thu Mar 17 12:49:58 2011 -0500
@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
+<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
+<assemblyIdentity
+    version="0.5.0.0"
+    processorArchitecture="X86"
+    name="dmail"
+    type="win32"
+/>
+<description>Dynamic Mail</description>
+<dependency>
+    <dependentAssembly>
+        <assemblyIdentity
+            type="win32"
+            name="Microsoft.Windows.Common-Controls"
+            version="6.0.0.0"
+            processorArchitecture="X86"
+            publicKeyToken="6595b64144ccf1df"
+            language="*"
+        />
+    </dependentAssembly>
+</dependency>
+</assembly>
\ No newline at end of file