From: Simon Armstrong Date: Sat, 28 Jan 2017 04:02:46 +0000 (+1300) Subject: dpiAware true for win32 manifest files X-Git-Url: https://jcornell.net/gitweb/gitweb.cgi?a=commitdiff_plain;h=366ef478d55932cadefc4369ff6d1fe6d2aaa355;p=blitzmax.git dpiAware true for win32 manifest files --- diff --git a/mod/maxgui.mod/xpmanifest.mod/resources/compile.cmd b/mod/maxgui.mod/xpmanifest.mod/resources/compile.cmd new file mode 100644 index 0000000..6849ee8 --- /dev/null +++ b/mod/maxgui.mod/xpmanifest.mod/resources/compile.cmd @@ -0,0 +1,2 @@ +@echo off +windres -o ../xpmanifest.o resources.rc \ No newline at end of file diff --git a/mod/maxgui.mod/xpmanifest.mod/resources/resources.rc b/mod/maxgui.mod/xpmanifest.mod/resources/resources.rc new file mode 100644 index 0000000..78b2682 --- /dev/null +++ b/mod/maxgui.mod/xpmanifest.mod/resources/resources.rc @@ -0,0 +1,4 @@ +#define RT_MANIFEST 24 +#define MANIFEST_ID 1 + +MANIFEST_ID RT_MANIFEST "xp.manifest" diff --git a/mod/maxgui.mod/xpmanifest.mod/resources/xp.manifest b/mod/maxgui.mod/xpmanifest.mod/resources/xp.manifest new file mode 100644 index 0000000..ae006b5 --- /dev/null +++ b/mod/maxgui.mod/xpmanifest.mod/resources/xp.manifest @@ -0,0 +1,27 @@ + + + + + + + true + + + + MaxGUI + + + + + + diff --git a/mod/maxgui.mod/xpmanifest.mod/xpmanifest.o b/mod/maxgui.mod/xpmanifest.mod/xpmanifest.o index 02d8c49..c3cf023 100644 Binary files a/mod/maxgui.mod/xpmanifest.mod/xpmanifest.o and b/mod/maxgui.mod/xpmanifest.mod/xpmanifest.o differ diff --git a/src/maxide/maxicons.o b/src/maxide/maxicons.o index dc11fcf..c3eb41d 100644 Binary files a/src/maxide/maxicons.o and b/src/maxide/maxicons.o differ diff --git a/src/maxide/resources/compile.cmd b/src/maxide/resources/compile.cmd new file mode 100644 index 0000000..7bc7453 --- /dev/null +++ b/src/maxide/resources/compile.cmd @@ -0,0 +1,2 @@ +@echo off +windres -o ../maxicons.o resources.rc \ No newline at end of file diff --git a/src/maxide/resources/main_icon.ico b/src/maxide/resources/main_icon.ico new file mode 100644 index 0000000..e0e5e79 Binary files /dev/null and b/src/maxide/resources/main_icon.ico differ diff --git a/src/maxide/resources/maxide.manifest b/src/maxide/resources/maxide.manifest new file mode 100644 index 0000000..6babb7b --- /dev/null +++ b/src/maxide/resources/maxide.manifest @@ -0,0 +1,25 @@ + + + + + true + + + + MaxIDE + + + + + + diff --git a/src/maxide/resources/resources.rc b/src/maxide/resources/resources.rc new file mode 100644 index 0000000..277779f --- /dev/null +++ b/src/maxide/resources/resources.rc @@ -0,0 +1,6 @@ +#define RT_MANIFEST 24 +#define MANIFEST_ID 1 +#define MAIN_ICON_ID 101 + +MANIFEST_ID RT_MANIFEST "maxide.manifest" +MAIN_ICON_ID ICON "main_icon.ico" \ No newline at end of file