From c4abef766ab4293076d6b04e6a54e93ed90cd60a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafa=C5=82=20Wojdy=C5=82a?= Date: Thu, 4 Jan 2024 18:11:18 +0100 Subject: [PATCH 01/74] Cleanup for win10 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Rafał Wojdyła --- .gitignore | 12 +- .gitmodules | 4 + Makefile | 16 - Makefile.builder | 45 -- .../version-core-agent-windows | 1 - components-versions/version-core-qubesdb | 1 - components-versions/version-core-vchan-xen | 1 - components-versions/version-gui-agent-windows | 1 - components-versions/version-gui-common | 1 - .../version-vmm-xen-windows-pvdrivers | 1 - components-versions/version-windows-utils | 1 - iso-README.txt | 51 -- iso-content/.gitignore | 2 - license.rtf | 407 ---------- power_settings.bat | 19 - qubes-tools-combined.wxs | 709 ------------------ qubes-tools.wxb | 43 -- qubes-tools.wxs | 368 --------- qubes-vmm-xen-windows-pvdrivers | 1 + rel | 1 - rpm_spec/win-iso.spec.in | 39 - set_version.bat | 3 - set_version.ps1 | 10 - uninstaller/uninstaller.c | 94 --- uninstaller/version.rc | 3 - version | 2 +- version_common.rc | 49 -- vs2017/installer-qubes-os-windows-tools.sln | 28 - vs2017/uninstaller/uninstaller.vcxproj | 215 ------ .../uninstaller/uninstaller.vcxproj.filters | 27 - 30 files changed, 8 insertions(+), 2147 deletions(-) create mode 100644 .gitmodules delete mode 100644 Makefile delete mode 100644 Makefile.builder delete mode 100644 components-versions/version-core-agent-windows delete mode 100644 components-versions/version-core-qubesdb delete mode 100644 components-versions/version-core-vchan-xen delete mode 100644 components-versions/version-gui-agent-windows delete mode 100644 components-versions/version-gui-common delete mode 100644 components-versions/version-vmm-xen-windows-pvdrivers delete mode 100644 components-versions/version-windows-utils delete mode 100644 iso-README.txt delete mode 100644 iso-content/.gitignore delete mode 100644 license.rtf delete mode 100644 power_settings.bat delete mode 100644 qubes-tools-combined.wxs delete mode 100644 qubes-tools.wxb delete mode 100644 qubes-tools.wxs create mode 160000 qubes-vmm-xen-windows-pvdrivers delete mode 100644 rel delete mode 100644 rpm_spec/win-iso.spec.in delete mode 100644 set_version.bat delete mode 100644 set_version.ps1 delete mode 100644 uninstaller/uninstaller.c delete mode 100644 uninstaller/version.rc delete mode 100644 version_common.rc delete mode 100644 vs2017/installer-qubes-os-windows-tools.sln delete mode 100644 vs2017/uninstaller/uninstaller.vcxproj delete mode 100644 vs2017/uninstaller/uninstaller.vcxproj.filters diff --git a/.gitignore b/.gitignore index 5bce2d4..2f2abce 100644 --- a/.gitignore +++ b/.gitignore @@ -1,12 +1,4 @@ -rpm/ +/**/.vs *.msi *.exe -components/ -pkgs/ -bin/ -*.sdf -*.suo -vs*/x64 -vs*/*/x64 -vs*/*/Debug -vs*/*/Release +/bin/ diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..bf30cac --- /dev/null +++ b/.gitmodules @@ -0,0 +1,4 @@ +[submodule "qubes-vmm-xen-windows-pvdrivers"] + path = qubes-vmm-xen-windows-pvdrivers + url = https://github.com/omeg/qubes-vmm-xen-windows-pvdrivers + branch = omeg/win10 diff --git a/Makefile b/Makefile deleted file mode 100644 index 4032836..0000000 --- a/Makefile +++ /dev/null @@ -1,16 +0,0 @@ -OUTDIR = bin/$(ARCH) -CFLAGS += -DUNICODE -municode -std=c11 -fgnu89-inline -D_WIN32_WINNT=0x0600 -LDFLAGS += -ladvapi32 - -all: $(OUTDIR) $(OUTDIR)/uninstaller.exe - -$(OUTDIR): - mkdir -p $@ - -$(OUTDIR)/uninstaller.exe: uninstaller/uninstaller.c - $(CC) $^ $(CFLAGS) $(LDFLAGS) -o $@ - -rename-msi: - for msi in qubes-tools-combined-*.msi; do \ - mv "$$msi" "qubes-tools-$${msi#qubes-tools-combined-}"; \ - done diff --git a/Makefile.builder b/Makefile.builder deleted file mode 100644 index e5c971c..0000000 --- a/Makefile.builder +++ /dev/null @@ -1,45 +0,0 @@ -NO_ARCHIVE = 1 -ifeq ($(PACKAGE_SET),dom0) -RPM_SPEC_FILES := rpm_spec/win-iso.spec -WINDOWS_IMAGE_EXTRACT_EXTRA := components-versions rel -endif -ifeq ($(PACKAGE_SET),vm) -WIN_COMPILER := msbuild -WIN_BUILD_CMD := true -WIN_SOURCE_SUBDIRS := . -WIN_SLN_DIR := vs2017 -SOURCE_COPY_IN := copy-components -SOURCE_COPY_OUT := copy-versions-out -WIN_PREBUILD_CMD = set_version.bat && powershell -executionpolicy bypass -File set_version.ps1 < nul -WIN_PACKAGE_EXT := msi -WIN_POSTBUILD_CMD := del advertise-tools.exe && call $(WINDOWS_SCRIPTS)/sign.bat -WIN_BUILD_DEPS := vmm-xen-windows-pvdrivers core-vchan-xen core-qubesdb windows-utils core-agent-windows gui-common gui-agent-windows -WIN_OUTPUT_BIN := bin -WIN_WIX_SOURCES := qubes-tools.wxs -WIN_WIX_BUNDLES := qubes-tools.wxb -WIN_CROSS_WIX_SOURCES := qubes-tools-combined.wxs -WIN_CROSS_POSTBUILD_CMD := make rename-msi && rm -f advertise-tools.exe -endif - -copy-components: - mkdir -p $(CHROOT_DIR)/$(DIST_SRC)/components - cp $(SRC_DIR)/*/*.msm $(CHROOT_DIR)/$(DIST_SRC)/components/ - cp $(SRC_DIR)/*/windows/*.msm $(CHROOT_DIR)/$(DIST_SRC)/components/ - mkdir -p $(CHROOT_DIR)/$(DIST_SRC)/new-versions - for c in $(WIN_BUILD_DEPS); do \ - cp $(SRC_DIR)/$$c/version \ - $(CHROOT_DIR)/$(DIST_SRC)/new-versions/version-$$c 2>/dev/null; \ - done - if ! diff -qr $(CHROOT_DIR)/$(DIST_SRC)/components-versions \ - $(CHROOT_DIR)/$(DIST_SRC)/new-versions; then \ - echo $$[ `cat $(ORIG_SRC)/rel` + 1 ] > $(CHROOT_DIR)/$(DIST_SRC)/rel; \ - fi - - cp $(BUILDER_REPO_DIR)/core-agent-windows/lib/advertise-tools.exe $(CHROOT_DIR)/$(DIST_SRC) - -copy-versions-out: - @echo " components-versions" - @rm -fr $(ORIG_SRC)/components-versions - @cp -r $(CHROOT_DIR)/$(DIST_SRC)/new-versions $(ORIG_SRC)/components-versions - @echo " rel" - @cp --remove-destination $(CHROOT_DIR)/$(DIST_SRC)/rel $(ORIG_SRC)/ diff --git a/components-versions/version-core-agent-windows b/components-versions/version-core-agent-windows deleted file mode 100644 index fcdb2e1..0000000 --- a/components-versions/version-core-agent-windows +++ /dev/null @@ -1 +0,0 @@ -4.0.0 diff --git a/components-versions/version-core-qubesdb b/components-versions/version-core-qubesdb deleted file mode 100644 index a2cec7a..0000000 --- a/components-versions/version-core-qubesdb +++ /dev/null @@ -1 +0,0 @@ -4.0.8 diff --git a/components-versions/version-core-vchan-xen b/components-versions/version-core-vchan-xen deleted file mode 100644 index c4e41f9..0000000 --- a/components-versions/version-core-vchan-xen +++ /dev/null @@ -1 +0,0 @@ -4.0.3 diff --git a/components-versions/version-gui-agent-windows b/components-versions/version-gui-agent-windows deleted file mode 100644 index fcdb2e1..0000000 --- a/components-versions/version-gui-agent-windows +++ /dev/null @@ -1 +0,0 @@ -4.0.0 diff --git a/components-versions/version-gui-common b/components-versions/version-gui-common deleted file mode 100644 index 4d54dad..0000000 --- a/components-versions/version-gui-common +++ /dev/null @@ -1 +0,0 @@ -4.0.2 diff --git a/components-versions/version-vmm-xen-windows-pvdrivers b/components-versions/version-vmm-xen-windows-pvdrivers deleted file mode 100644 index fcdb2e1..0000000 --- a/components-versions/version-vmm-xen-windows-pvdrivers +++ /dev/null @@ -1 +0,0 @@ -4.0.0 diff --git a/components-versions/version-windows-utils b/components-versions/version-windows-utils deleted file mode 100644 index fcdb2e1..0000000 --- a/components-versions/version-windows-utils +++ /dev/null @@ -1 +0,0 @@ -4.0.0 diff --git a/iso-README.txt b/iso-README.txt deleted file mode 100644 index 0592622..0000000 --- a/iso-README.txt +++ /dev/null @@ -1,51 +0,0 @@ -I. Installing Qubes Windows Tools -================================= - -Qubes Windows Tools are currently supported on 64-bit Windows (7 or -newer), but gui-agent (auxiliary support for arbitrary screen resolution and seamless -mode) requires exactly Windows 7. - -How to prepare for Windows 7 installation ------------------------------------------ -In order to install gui-agent on Windows 7, disable driver -signature checking policy, as the current drivers are only self-signed. In -order to disable driver signing requirement (in the Windows VM): - -1) Start command prompt as Administrator Mode, i.e. right click on the Command -Prompt icon and choose "Run as administrator". - -2) In the command prompt type: - bcdedit /set testsigning on - -3) Reboot your Windows VM. - -Installing Qubes Windows Tools ------------------------------- - -Run the .exe file from this virtual CDROM. Installation may require a few -reboots, especially in case of an upgrade -- make sure the process is -completed before using the VM (this is especially important for VM templates). - -* During the installation, you will be prompted to allow installation of -multiple drivers, signed by The Linux Foundation -- allow that. - -* In some situations, you might be prompted to format a "Qubes Private -Image" -- cancel that prompt. - -* Some of Xen PV drivers will request a system restart during the -installation -- answer "No" there, and reboot the system only after the -whole installation. - - -II. Known issues -================ - -1) The Xen PV disk driver is disabled by default. This is because it causes - a BSOD after installation in Qubes. However, it seems to work fine after - that, so you may want to use it (for better performance and the ability - to use qvm-block). MAKE SURE TO BACK UP YOUR VM FIRST in case something - goes very wrong. - -2) Windows shows an exclamation mark on the network icon in the system tray, - but this is only a cosmetic issue (network configuration is being set - properly). diff --git a/iso-content/.gitignore b/iso-content/.gitignore deleted file mode 100644 index 50a0d4f..0000000 --- a/iso-content/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -*.msi -*.exe diff --git a/license.rtf b/license.rtf deleted file mode 100644 index f1e1902..0000000 --- a/license.rtf +++ /dev/null @@ -1,407 +0,0 @@ -{\rtf1\adeflang1025\ansi\ansicpg1250\uc1\adeff0\deff0\stshfdbch14\stshfloch0\stshfhich0\stshfbi0\deflang1045\deflangfe1045\themelang1045\themelangfe0\themelangcs0{\fonttbl{\f0\fbidi \froman\fcharset238\fprq2{\*\panose 02020603050405020304}Times New Roman;}{\f1\fbidi \fswiss\fcharset238\fprq2{\*\panose 020b0604020202020204}Arial;} -{\f2\fbidi \fmodern\fcharset238\fprq1{\*\panose 02070309020205020404}Courier New;}{\f14\fbidi \fnil\fcharset136\fprq2{\*\panose 02010601000101010101}PMingLiU{\*\falt Arial Unicode MS};} -{\f14\fbidi \fnil\fcharset136\fprq2{\*\panose 02010601000101010101}PMingLiU{\*\falt Arial Unicode MS};}{\f39\fbidi \fnil\fcharset136\fprq2{\*\panose 00000000000000000000}@PMingLiU;} -{\flomajor\f31500\fbidi \froman\fcharset238\fprq2{\*\panose 02020603050405020304}Times New Roman;}{\fdbmajor\f31501\fbidi \froman\fcharset238\fprq2{\*\panose 02020603050405020304}Times New Roman;} -{\fhimajor\f31502\fbidi \fswiss\fcharset238\fprq2{\*\panose 020f0302020204030204}Calibri Light;}{\fbimajor\f31503\fbidi \froman\fcharset238\fprq2{\*\panose 02020603050405020304}Times New Roman;} -{\flominor\f31504\fbidi \froman\fcharset238\fprq2{\*\panose 02020603050405020304}Times New Roman;}{\fdbminor\f31505\fbidi \froman\fcharset238\fprq2{\*\panose 02020603050405020304}Times New Roman;} -{\fhiminor\f31506\fbidi \fswiss\fcharset238\fprq2{\*\panose 020f0502020204030204}Calibri;}{\fbiminor\f31507\fbidi \froman\fcharset238\fprq2{\*\panose 02020603050405020304}Times New Roman;}{\f229\fbidi \froman\fcharset0\fprq2 Times New Roman;} -{\f228\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr;}{\f230\fbidi \froman\fcharset161\fprq2 Times New Roman Greek;}{\f231\fbidi \froman\fcharset162\fprq2 Times New Roman Tur;}{\f232\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew);} -{\f233\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic);}{\f234\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic;}{\f235\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese);}{\f239\fbidi \fswiss\fcharset0\fprq2 Arial;} -{\f238\fbidi \fswiss\fcharset204\fprq2 Arial Cyr;}{\f240\fbidi \fswiss\fcharset161\fprq2 Arial Greek;}{\f241\fbidi \fswiss\fcharset162\fprq2 Arial Tur;}{\f242\fbidi \fswiss\fcharset177\fprq2 Arial (Hebrew);} -{\f243\fbidi \fswiss\fcharset178\fprq2 Arial (Arabic);}{\f244\fbidi \fswiss\fcharset186\fprq2 Arial Baltic;}{\f245\fbidi \fswiss\fcharset163\fprq2 Arial (Vietnamese);}{\f249\fbidi \fmodern\fcharset0\fprq1 Courier New;} -{\f248\fbidi \fmodern\fcharset204\fprq1 Courier New Cyr;}{\f250\fbidi \fmodern\fcharset161\fprq1 Courier New Greek;}{\f251\fbidi \fmodern\fcharset162\fprq1 Courier New Tur;}{\f252\fbidi \fmodern\fcharset177\fprq1 Courier New (Hebrew);} -{\f253\fbidi \fmodern\fcharset178\fprq1 Courier New (Arabic);}{\f254\fbidi \fmodern\fcharset186\fprq1 Courier New Baltic;}{\f255\fbidi \fmodern\fcharset163\fprq1 Courier New (Vietnamese);}{\flomajor\f31510\fbidi \froman\fcharset0\fprq2 Times New Roman;} -{\flomajor\f31509\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr;}{\flomajor\f31511\fbidi \froman\fcharset161\fprq2 Times New Roman Greek;}{\flomajor\f31512\fbidi \froman\fcharset162\fprq2 Times New Roman Tur;} -{\flomajor\f31513\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew);}{\flomajor\f31514\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic);}{\flomajor\f31515\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic;} -{\flomajor\f31516\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese);}{\fdbmajor\f31520\fbidi \froman\fcharset0\fprq2 Times New Roman;}{\fdbmajor\f31519\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr;} -{\fdbmajor\f31521\fbidi \froman\fcharset161\fprq2 Times New Roman Greek;}{\fdbmajor\f31522\fbidi \froman\fcharset162\fprq2 Times New Roman Tur;}{\fdbmajor\f31523\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew);} -{\fdbmajor\f31524\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic);}{\fdbmajor\f31525\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic;}{\fdbmajor\f31526\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese);} -{\fhimajor\f31530\fbidi \fswiss\fcharset0\fprq2 Calibri Light;}{\fhimajor\f31529\fbidi \fswiss\fcharset204\fprq2 Calibri Light Cyr;}{\fhimajor\f31531\fbidi \fswiss\fcharset161\fprq2 Calibri Light Greek;} -{\fhimajor\f31532\fbidi \fswiss\fcharset162\fprq2 Calibri Light Tur;}{\fhimajor\f31535\fbidi \fswiss\fcharset186\fprq2 Calibri Light Baltic;}{\fhimajor\f31536\fbidi \fswiss\fcharset163\fprq2 Calibri Light (Vietnamese);} -{\fbimajor\f31540\fbidi \froman\fcharset0\fprq2 Times New Roman;}{\fbimajor\f31539\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr;}{\fbimajor\f31541\fbidi \froman\fcharset161\fprq2 Times New Roman Greek;} -{\fbimajor\f31542\fbidi \froman\fcharset162\fprq2 Times New Roman Tur;}{\fbimajor\f31543\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew);}{\fbimajor\f31544\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic);} -{\fbimajor\f31545\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic;}{\fbimajor\f31546\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese);}{\flominor\f31550\fbidi \froman\fcharset0\fprq2 Times New Roman;} -{\flominor\f31549\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr;}{\flominor\f31551\fbidi \froman\fcharset161\fprq2 Times New Roman Greek;}{\flominor\f31552\fbidi \froman\fcharset162\fprq2 Times New Roman Tur;} -{\flominor\f31553\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew);}{\flominor\f31554\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic);}{\flominor\f31555\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic;} -{\flominor\f31556\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese);}{\fdbminor\f31560\fbidi \froman\fcharset0\fprq2 Times New Roman;}{\fdbminor\f31559\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr;} -{\fdbminor\f31561\fbidi \froman\fcharset161\fprq2 Times New Roman Greek;}{\fdbminor\f31562\fbidi \froman\fcharset162\fprq2 Times New Roman Tur;}{\fdbminor\f31563\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew);} -{\fdbminor\f31564\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic);}{\fdbminor\f31565\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic;}{\fdbminor\f31566\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese);} -{\fhiminor\f31570\fbidi \fswiss\fcharset0\fprq2 Calibri;}{\fhiminor\f31569\fbidi \fswiss\fcharset204\fprq2 Calibri Cyr;}{\fhiminor\f31571\fbidi \fswiss\fcharset161\fprq2 Calibri Greek;}{\fhiminor\f31572\fbidi \fswiss\fcharset162\fprq2 Calibri Tur;} -{\fhiminor\f31575\fbidi \fswiss\fcharset186\fprq2 Calibri Baltic;}{\fhiminor\f31576\fbidi \fswiss\fcharset163\fprq2 Calibri (Vietnamese);}{\fbiminor\f31580\fbidi \froman\fcharset0\fprq2 Times New Roman;} -{\fbiminor\f31579\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr;}{\fbiminor\f31581\fbidi \froman\fcharset161\fprq2 Times New Roman Greek;}{\fbiminor\f31582\fbidi \froman\fcharset162\fprq2 Times New Roman Tur;} -{\fbiminor\f31583\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew);}{\fbiminor\f31584\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic);}{\fbiminor\f31585\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic;} -{\fbiminor\f31586\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese);}}{\colortbl;\red0\green0\blue0;\red0\green0\blue255;\red0\green255\blue255;\red0\green255\blue0;\red255\green0\blue255;\red255\green0\blue0;\red255\green255\blue0; -\red255\green255\blue255;\red0\green0\blue128;\red0\green128\blue128;\red0\green128\blue0;\red128\green0\blue128;\red128\green0\blue0;\red128\green128\blue0;\red128\green128\blue128;\red192\green192\blue192;\red51\green51\blue51;\red16\green0\blue112;} -{\*\defchp \fs22\dbch\af14 }{\*\defpap \ql \li0\ri0\sa160\sl259\slmult1\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 }\noqfpromote {\stylesheet{ -\ql \li0\ri0\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \rtlch\fcs1 \af0\afs24\alang1025 \ltrch\fcs0 \fs24\lang1033\langfe1028\loch\f0\hich\af0\dbch\af14\cgrid\langnp1033\langfenp1028 \snext0 \sqformat \spriority0 Normal;}{ -\s3\ql \li0\ri0\sb100\sa100\sbauto1\saauto1\widctlpar\wrapdefault\aspalpha\aspnum\faauto\outlinelevel2\adjustright\rin0\lin0\itap0 \rtlch\fcs1 \ab\af0\afs27\alang1025 \ltrch\fcs0 \b\fs27\lang1045\langfe1045\cgrid\langnp1045\langfenp1045 -\sbasedon0 \snext3 \slink17 \sqformat \spriority9 \styrsid8986051 heading 3;}{\*\cs10 \additive \ssemihidden Default Paragraph Font;}{\* -\ts11\tsrowd\trftsWidthB3\trpaddl108\trpaddr108\trpaddfl3\trpaddft3\trpaddfb3\trpaddfr3\trcbpat1\trcfpat1\tblind0\tblindtype3\tsvertalt\tsbrdrt\tsbrdrl\tsbrdrb\tsbrdrr\tsbrdrdgl\tsbrdrdgr\tsbrdrh\tsbrdrv \ql \li0\ri0\sa160\sl259\slmult1 -\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \rtlch\fcs1 \af0\afs22\alang1025 \ltrch\fcs0 \fs22\lang1045\langfe1045\loch\f0\hich\af0\dbch\af14\cgrid\langnp1045\langfenp1045 \snext11 \ssemihidden \sunhideused Normal Table;}{ -\s15\ql \li0\ri0\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \rtlch\fcs1 \af2\afs20\alang1025 \ltrch\fcs0 \fs20\lang1033\langfe1028\loch\f2\hich\af2\dbch\af14\cgrid\langnp1033\langfenp1028 -\sbasedon0 \snext15 \slink16 \styrsid3754175 Plain Text;}{\*\cs16 \additive \rtlch\fcs1 \af2\afs20 \ltrch\fcs0 \f2\fs20\lang1033\langfe1028\langnp1033\langfenp1028 \sbasedon10 \slink15 \slocked \ssemihidden Plain Text Char;}{\*\cs17 \additive \rtlch\fcs1 -\ab\af0\afs27 \ltrch\fcs0 \b\fs27\dbch\af0 \sbasedon10 \slink3 \slocked \spriority9 \styrsid8986051 Heading 3 Char;}{\s18\ql \li0\ri0\sb100\sa100\sbauto1\saauto1\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \rtlch\fcs1 -\af0\afs24\alang1025 \ltrch\fcs0 \fs24\lang1045\langfe1045\cgrid\langnp1045\langfenp1045 \sbasedon0 \snext18 \ssemihidden \sunhideused \styrsid8986051 Normal (Web);}{\s19\ql \li0\ri0\widctlpar -\tx916\tx1832\tx2748\tx3664\tx4580\tx5496\tx6412\tx7328\tx8244\tx9160\tx10076\tx10992\tx11908\tx12824\tx13740\tx14656\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \rtlch\fcs1 \af2\afs20\alang1025 \ltrch\fcs0 -\f2\fs20\lang1045\langfe1045\cgrid\langnp1045\langfenp1045 \sbasedon0 \snext19 \slink20 \ssemihidden \sunhideused \styrsid8986051 HTML Preformatted;}{\*\cs20 \additive \rtlch\fcs1 \af2\afs20 \ltrch\fcs0 \f2\fs20 -\sbasedon10 \slink19 \slocked \ssemihidden \styrsid8986051 HTML Preformatted Char;}{\*\cs21 \additive \b \sqformat \spriority22 \styrsid8986051 Strong;}{\*\cs22 \additive \spriority0 \styrsid8986051 apple-converted-space;}{\*\cs23 \additive \i -\ssemihidden \sunhideused \styrsid8986051 HTML Variable;}{\*\cs24 \additive \f2 \ssemihidden \sunhideused \styrsid8986051 HTML Sample;}{\*\cs25 \additive \ul\cf2 \ssemihidden \sunhideused \styrsid8986051 Hyperlink;}{ -\s26\ql \li0\ri0\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \rtlch\fcs1 \af0\afs24\alang1025 \ltrch\fcs0 \fs24\lang1033\langfe1028\loch\f0\hich\af0\dbch\af14\cgrid\langnp1033\langfenp1028 -\snext26 \sqformat \spriority1 \styrsid8986051 No Spacing;}}{\*\pgptbl {\pgp\ipgp0\itap0\li0\ri0\sb0\sa0}}{\*\rsidtbl \rsid474\rsid68730\rsid77744\rsid200972\rsid202343\rsid340389\rsid413488\rsid467166\rsid656002\rsid726551\rsid729287\rsid936952 -\rsid1004773\rsid1014356\rsid1265243\rsid1332399\rsid1589327\rsid1596877\rsid1709434\rsid1781109\rsid1985473\rsid1985832\rsid1997227\rsid2036987\rsid2060446\rsid2164318\rsid2243883\rsid2253916\rsid2567185\rsid2567637\rsid2622546\rsid2777930\rsid2838836 -\rsid2964589\rsid3353643\rsid3565487\rsid3754175\rsid3804266\rsid3825468\rsid4004439\rsid4130868\rsid4141992\rsid4338816\rsid4406752\rsid4603602\rsid4721804\rsid4813120\rsid4855380\rsid4923991\rsid5267079\rsid5311350\rsid5323653\rsid5506723\rsid5509841 -\rsid5655055\rsid5716959\rsid5777070\rsid5784793\rsid5787125\rsid5794163\rsid5845810\rsid5901623\rsid6231793\rsid6256615\rsid6301864\rsid6320269\rsid6366727\rsid6824997\rsid6969006\rsid7098056\rsid7100641\rsid7175781\rsid7292684\rsid7484807\rsid7634859 -\rsid7872531\rsid7934035\rsid7942967\rsid7995404\rsid8078353\rsid8401500\rsid8484561\rsid8608306\rsid8655586\rsid8721664\rsid8735443\rsid8852293\rsid8986051\rsid9047685\rsid9327835\rsid9336856\rsid9440601\rsid9516821\rsid9586365\rsid9642140\rsid9769593 -\rsid9906650\rsid9968313\rsid9992571\rsid10184217\rsid10230039\rsid10359293\rsid10365952\rsid10581881\rsid10639865\rsid10834591\rsid10899037\rsid11164892\rsid11303133\rsid11403804\rsid11431521\rsid11545965\rsid11558645\rsid11560683\rsid11562399 -\rsid11564247\rsid11621421\rsid11676765\rsid11684437\rsid11750258\rsid11807751\rsid12060664\rsid12079163\rsid12273124\rsid12340957\rsid12353219\rsid12593538\rsid12675781\rsid12733557\rsid12781090\rsid12870658\rsid13047990\rsid13071164\rsid13139276 -\rsid13201580\rsid13331796\rsid13388756\rsid13442406\rsid13839155\rsid13960660\rsid14112554\rsid14164144\rsid14184705\rsid14366939\rsid14372153\rsid14497332\rsid14499682\rsid14578437\rsid14629096\rsid14631914\rsid14634800\rsid14680120\rsid14682807 -\rsid14751681\rsid14820212\rsid14899707\rsid14902208\rsid15081954\rsid15084235\rsid15354878\rsid15408241\rsid15478159\rsid15564113\rsid15597980\rsid15731396\rsid15737555\rsid16004358\rsid16009437\rsid16187444\rsid16334942\rsid16522230\rsid16536646 -\rsid16545256\rsid16668395\rsid16737298}{\mmathPr\mmathFont34\mbrkBin0\mbrkBinSub0\msmallFrac0\mdispDef1\mlMargin0\mrMargin0\mdefJc1\mwrapIndent1440\mintLim0\mnaryLim1}{\info{\author Alan Williams}{\operator omeg}{\creatim\yr2006\mo4\dy10\hr21\min46} -{\revtim\yr2016\mo7\dy15\hr17\min47}{\version4}{\edmins6}{\nofpages7}{\nofwords2517}{\nofchars15105}{\*\company Affymetrix, Inc.}{\nofcharsws17587}{\vern57441}}{\*\xmlnstbl {\xmlns1 http://schemas.microsoft.com/office/word/2003/wordml}} -\paperw12240\paperh15840\margl1319\margr1319\margt1417\margb1417\gutter0\ltrsect -\widowctrl\ftnbj\aenddoc\hyphhotz425\trackmoves0\trackformatting1\donotembedsysfont0\relyonvml0\donotembedlingdata1\grfdocevents0\validatexml0\showplaceholdtext0\ignoremixedcontent0\saveinvalidxml0\showxmlerrors0 -\noxlattoyen\expshrtn\noultrlspc\dntblnsbdb\nospaceforul\formshade\horzdoc\dgmargin\dghspace180\dgvspace180\dghorigin1319\dgvorigin1417\dghshow1\dgvshow1 -\jexpand\viewkind1\viewscale130\pgbrdrhead\pgbrdrfoot\splytwnine\ftnlytwnine\htmautsp\nolnhtadjtbl\useltbaln\alntblind\lytcalctblwd\lyttblrtgr\lnbrkrule\nobrkwrptbl\snaptogridincell\allowfieldendsel\wrppunct\asianbrkrule\nojkernpunct\rsidroot2060446 \fet0 -{\*\wgrffmtfilter 2450}\ilfomacatclnup0\ltrpar \sectd \ltrsect\linex0\headery708\footery708\colsx708\endnhere\sectlinegrid360\sectdefaultcl\sectrsid3754175\sftnbj {\*\pnseclvl1\pnucrm\pnqc\pnstart1\pnindent720\pnhang {\pntxta .}}{\*\pnseclvl2 -\pnucltr\pnqc\pnstart1\pnindent720\pnhang {\pntxta .}}{\*\pnseclvl3\pndec\pnqc\pnstart1\pnindent720\pnhang {\pntxta .}}{\*\pnseclvl4\pnlcltr\pnqc\pnstart1\pnindent720\pnhang {\pntxta )}}{\*\pnseclvl5\pndec\pnqc\pnstart1\pnindent720\pnhang {\pntxtb (} -{\pntxta )}}{\*\pnseclvl6\pnlcltr\pnqc\pnstart1\pnindent720\pnhang {\pntxtb (}{\pntxta )}}{\*\pnseclvl7\pnlcrm\pnqc\pnstart1\pnindent720\pnhang {\pntxtb (}{\pntxta )}}{\*\pnseclvl8\pnlcltr\pnqc\pnstart1\pnindent720\pnhang {\pntxtb (}{\pntxta )}} -{\*\pnseclvl9\pnlcrm\pnqc\pnstart1\pnindent720\pnhang {\pntxtb (}{\pntxta )}}\pard\plain \ltrpar\ql \li0\ri0\sb240\sa192\widctlpar\wrapdefault\aspalpha\aspnum\faauto\outlinelevel2\adjustright\rin0\lin0\itap0\pararsid8986051 \cbpat8 \rtlch\fcs1 -\af0\afs24\alang1025 \ltrch\fcs0 \fs24\lang1033\langfe1028\loch\af0\hich\af0\dbch\af14\cgrid\langnp1033\langfenp1028 {\rtlch\fcs1 \ab\af1\afs36 \ltrch\fcs0 \b\f1\fs36\cf17\lang1033\langfe1045\langfenp1045\insrsid8986051\charrsid8986051 -GNU GENERAL PUBLIC LICENSE -\par }\pard \ltrpar\ql \li0\ri0\sb240\sa240\sl312\slmult0\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\pararsid8986051 \cbpat8 {\rtlch\fcs1 \af1 \ltrch\fcs0 \f1\cf1\lang1033\langfe1045\langfenp1045\insrsid8986051\charrsid8986051 -Version 2, June 1991 -\par }\pard\plain \ltrpar\s26\ql \li0\ri0\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\pararsid8986051 \rtlch\fcs1 \af0\afs24\alang1025 \ltrch\fcs0 \fs24\lang1033\langfe1028\loch\af0\hich\af0\dbch\af14\cgrid\langnp1033\langfenp1028 -{\rtlch\fcs1 \af2\afs20 \ltrch\fcs0 \f2\fs20\lang1033\langfe1045\langfenp1045\insrsid8986051\charrsid8986051 \hich\af2\dbch\af14\loch\f2 Copyright (C) 1989, 1991 Free Software Foundation, Inc. -\par \hich\af2\dbch\af14\loch\f2 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA -\par -\par \hich\af2\dbch\af14\loch\f2 Everyone is permitted to copy and distribute verbatim copies -\par \hich\af2\dbch\af14\loch\f2 of this license document, but changing it is not allowed. -\par }\pard\plain \ltrpar\ql \li0\ri0\sb240\sa192\widctlpar\wrapdefault\aspalpha\aspnum\faauto\outlinelevel2\adjustright\rin0\lin0\itap0\pararsid8986051 \cbpat8 \rtlch\fcs1 \af0\afs24\alang1025 \ltrch\fcs0 -\fs24\lang1033\langfe1028\loch\af0\hich\af0\dbch\af14\cgrid\langnp1033\langfenp1028 {\rtlch\fcs1 \ab\af1\afs36 \ltrch\fcs0 \b\f1\fs36\cf17\lang1033\langfe1045\langfenp1045\insrsid8986051\charrsid8986051 Preamble -\par }\pard \ltrpar\ql \li0\ri0\sb240\sa240\sl312\slmult0\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\pararsid8986051 \cbpat8 {\rtlch\fcs1 \af1 \ltrch\fcs0 \f1\cf1\lang1033\langfe1045\langfenp1045\insrsid8986051\charrsid8986051 -The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public License is intended to guarantee your freedom to share and -change free software--to make sure the software is free for all its users. This General Public License applies to most of the Free Software Foundation's software and to any other program whose authors commit to using it. (Some other Free Software Foundati -on software is covered by the GNU Lesser General Public License instead.) You can apply it to your programs, too. -\par When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the - freedom to distribute copies of free software (and charge for this service if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs; and that you know you can do th -ese things. -\par To protect your rights, we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. These restrictions translate to certain responsibilities for you if you distribute copies of the software, or - if you modify it. -\par For example, if you distribute copies of such a program, whether gratis or for a fee, you must give the recipients all the rights that you have. You must make sure that they, too, receive or can get the source code. And you must show the -m these terms so they know their rights. -\par We protect your rights with two steps: (1) copyright the software, and (2) offer you this license which gives you legal permission to copy, distribute and/or modify the software. -\par Also, for each author's protection a -nd ours, we want to make certain that everyone understands that there is no warranty for this free software. If the software is modified by someone else and passed on, we want its recipients to know that what they have is not the original, so that any pro -blems introduced by others will not reflect on the original authors' reputations. -\par Finally, any free program is threatened constantly by software patents. We wish to avoid the danger that redistributors of a free program will individually obtain patent licen -ses, in effect making the program proprietary. To prevent this, we have made it clear that any patent must be licensed for everyone's free use or not licensed at all. -\par The precise terms and conditions for copying, distribution and modification follow. -\par }\pard \ltrpar\ql \li0\ri0\sb240\sa192\widctlpar\wrapdefault\aspalpha\aspnum\faauto\outlinelevel2\adjustright\rin0\lin0\itap0\pararsid8986051 \cbpat8 {\rtlch\fcs1 \ab\af1\afs36 \ltrch\fcs0 -\b\f1\fs36\cf17\lang1033\langfe1045\langfenp1045\insrsid8986051\charrsid8986051 TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION -\par }\pard \ltrpar\ql \li0\ri0\sb240\sa240\sl312\slmult0\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\pararsid8986051 \cbpat8 {\rtlch\fcs1 \ab\af1 \ltrch\fcs0 -\b\f1\cf1\lang1033\langfe1045\langfenp1045\insrsid8986051\charrsid8986051 0.}{\rtlch\fcs1 \af1 \ltrch\fcs0 \f1\cf1\lang1033\langfe1045\langfenp1045\insrsid8986051\charrsid8986051 \~ -This License applies to any program or other work which contains a notice placed by the copyright holder saying it may be distributed under the terms of this General Public License. The "Program -", below, refers to any such program or work, and a "work based on the Program" means either the Program or any derivative work under copyright law: that is to say, a work containing the Program or a portion of it, either verbatim or with modifications an -d/or translated into another language. (Hereinafter, translation is included without limitation in the term "modification".) Each licensee is addressed as "you". -\par Activities other than copying, distribution and modification are not covered by this License; t -hey are outside its scope. The act of running the Program is not restricted, and the output from the Program is covered only if its contents constitute a work based on the Program (independent of having been made by running the Program). Whether that is t -rue depends on what the Program does. -\par }{\rtlch\fcs1 \ab\af1 \ltrch\fcs0 \b\f1\cf1\lang1033\langfe1045\langfenp1045\insrsid8986051\charrsid8986051 1.}{\rtlch\fcs1 \af1 \ltrch\fcs0 \f1\cf1\lang1033\langfe1045\langfenp1045\insrsid8986051\charrsid8986051 \~ -You may copy and distribute verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and di -sclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and give any other recipients of the Program a copy of this License along with the Program. -\par You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. -\par }{\rtlch\fcs1 \ab\af1 \ltrch\fcs0 \b\f1\cf1\lang1033\langfe1045\langfenp1045\insrsid8986051\charrsid8986051 2.}{\rtlch\fcs1 \af1 \ltrch\fcs0 \f1\cf1\lang1033\langfe1045\langfenp1045\insrsid8986051\charrsid8986051 \~ -You may modify your copy or copies of the Program or any portion of it, thus forming a work based on the Program, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions: - -\par }\pard \ltrpar\ql \li720\ri507\sb240\sa360\sl312\slmult0\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin507\lin720\itap0\pararsid8986051 \cbpat8 {\rtlch\fcs1 \ab\af1 \ltrch\fcs0 -\b\f1\cf1\lang1033\langfe1045\langfenp1045\insrsid8986051\charrsid8986051 a)}{\rtlch\fcs1 \af1 \ltrch\fcs0 \f1\cf1\lang1033\langfe1045\langfenp1045\insrsid8986051\charrsid8986051 \~ -You must cause the modified files to carry prominent notices stating that you changed the files and the date of any change. -\par }{\rtlch\fcs1 \ab\af1 \ltrch\fcs0 \b\f1\cf1\lang1033\langfe1045\langfenp1045\insrsid8986051\charrsid8986051 b)}{\rtlch\fcs1 \af1 \ltrch\fcs0 \f1\cf1\lang1033\langfe1045\langfenp1045\insrsid8986051\charrsid8986051 \~ -You must cause any work that you distribute or publish, that in whole or in part contains or is derived from the Program or any part thereof, to be licensed as a whole at no charge to all third parties under the terms of this License. -\par }{\rtlch\fcs1 \ab\af1 \ltrch\fcs0 \b\f1\cf1\lang1033\langfe1045\langfenp1045\insrsid8986051\charrsid8986051 c)}{\rtlch\fcs1 \af1 \ltrch\fcs0 \f1\cf1\lang1033\langfe1045\langfenp1045\insrsid8986051\charrsid8986051 \~If the modified pr -ogram normally reads commands interactively when run, you must cause it, when started running for such interactive use in the most ordinary way, to print or display an announcement including an appropriate copyright notice and a notice that there is no wa -r -ranty (or else, saying that you provide a warranty) and that users may redistribute the program under these conditions, and telling the user how to view a copy of this License. (Exception: if the Program itself is interactive but does not normally print s -uch an announcement, your work based on the Program is not required to print an announcement.) -\par }\pard \ltrpar\ql \li0\ri0\sb240\sa240\sl312\slmult0\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\pararsid8986051 \cbpat8 {\rtlch\fcs1 \af1 \ltrch\fcs0 \f1\cf1\lang1033\langfe1045\langfenp1045\insrsid8986051\charrsid8986051 -These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Program, and can be reasonably considered - independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Program, -the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it. -\par Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Program. -\par In addition, mere aggregation of another work not based on the Program with the Program (or with a work based on the Program) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. -\par }{\rtlch\fcs1 \ab\af1 \ltrch\fcs0 \b\f1\cf1\lang1033\langfe1045\langfenp1045\insrsid8986051\charrsid8986051 3.}{\rtlch\fcs1 \af1 \ltrch\fcs0 \f1\cf1\lang1033\langfe1045\langfenp1045\insrsid8986051\charrsid8986051 \~ -You may copy and distribute the Program (or a work based on it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you also do one of the following: -\par }\pard \ltrpar\ql \li720\ri507\sb240\sa360\sl312\slmult0\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin507\lin720\itap0\pararsid8986051 \cbpat8 {\rtlch\fcs1 \ab\af1 \ltrch\fcs0 -\b\f1\cf1\lang1033\langfe1045\langfenp1045\insrsid8986051\charrsid8986051 a)}{\rtlch\fcs1 \af1 \ltrch\fcs0 \f1\cf1\lang1033\langfe1045\langfenp1045\insrsid8986051\charrsid8986051 \~ -Accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, -\par }{\rtlch\fcs1 \ab\af1 \ltrch\fcs0 \b\f1\cf1\lang1033\langfe1045\langfenp1045\insrsid8986051\charrsid8986051 b)}{\rtlch\fcs1 \af1 \ltrch\fcs0 \f1\cf1\lang1033\langfe1045\langfenp1045\insrsid8986051\charrsid8986051 \~ -Accompany it with a written offer, valid for at least three years, to give any third party, for a charge no more than your cost of physically performing source distribution, a complete machin -e-readable copy of the corresponding source code, to be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, -\par }{\rtlch\fcs1 \ab\af1 \ltrch\fcs0 \b\f1\cf1\lang1033\langfe1045\langfenp1045\insrsid8986051\charrsid8986051 c)}{\rtlch\fcs1 \af1 \ltrch\fcs0 \f1\cf1\lang1033\langfe1045\langfenp1045\insrsid8986051\charrsid8986051 \~ -Accompany it with the information you received as to the offer to distribute corresp -onding source code. (This alternative is allowed only for noncommercial distribution and only if you received the program in object code or executable form with such an offer, in accord with Subsection b above.) -\par }\pard \ltrpar\ql \li0\ri0\sb240\sa240\sl312\slmult0\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\pararsid8986051 \cbpat8 {\rtlch\fcs1 \af1 \ltrch\fcs0 \f1\cf1\lang1033\langfe1045\langfenp1045\insrsid8986051\charrsid8986051 -The source code for a work means the preferr -ed form of the work for making modifications to it. For an executable work, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and instal -l -ation of the executable. However, as a special exception, the source code distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system -on which the executable runs, unless that component itself accompanies the executable. -\par If distribution of executable or object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the -same place counts as distribution of the source code, even though third parties are not compelled to copy the source along with the object code. -\par }{\rtlch\fcs1 \ab\af1 \ltrch\fcs0 \b\f1\cf1\lang1033\langfe1045\langfenp1045\insrsid8986051\charrsid8986051 4.}{\rtlch\fcs1 \af1 \ltrch\fcs0 \f1\cf1\lang1033\langfe1045\langfenp1045\insrsid8986051\charrsid8986051 \~ -You may not copy, modify, sublicense, or distribute the Program except as expressly provided under this Lice -nse. Any attempt otherwise to copy, modify, sublicense or distribute the Program is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have thei -r licenses terminated so long as such parties remain in full compliance. -\par }{\rtlch\fcs1 \ab\af1 \ltrch\fcs0 \b\f1\cf1\lang1033\langfe1045\langfenp1045\insrsid8986051\charrsid8986051 5.}{\rtlch\fcs1 \af1 \ltrch\fcs0 \f1\cf1\lang1033\langfe1045\langfenp1045\insrsid8986051\charrsid8986051 \~ -You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Program or its derivative works. T -hese actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Program (or any work based on the Program), you indicate your acceptance of this License to do so, and all its terms and conditions for copyi -ng, distributing or modifying the Program or works based on it. -\par }{\rtlch\fcs1 \ab\af1 \ltrch\fcs0 \b\f1\cf1\lang1033\langfe1045\langfenp1045\insrsid8986051\charrsid8986051 6.}{\rtlch\fcs1 \af1 \ltrch\fcs0 \f1\cf1\lang1033\langfe1045\langfenp1045\insrsid8986051\charrsid8986051 \~ -Each time you redistribute the Program (or any work based on the Program), the recipient automatically receives a license from the original licensor to copy, distribute or modify the Program - subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties to this License. -\par }{\rtlch\fcs1 \ab\af1 \ltrch\fcs0 \b\f1\cf1\lang1033\langfe1045\langfenp1045\insrsid8986051\charrsid8986051 7.}{\rtlch\fcs1 \af1 \ltrch\fcs0 \f1\cf1\lang1033\langfe1045\langfenp1045\insrsid8986051\charrsid8986051 \~If, as a consequence of a co -urt judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you - -from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Program at all. For example, if a paten -t - license would not permit royalty-free redistribution of the Program by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Pro -gram. -\par If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply and the section as a whole is intended to apply in other circumstances. -\par It is not the purpose of this se -ction to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system, which is implemented by public li -c -ense practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute s -oftware through any other system and a licensee cannot impose that choice. -\par This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. -\par }{\rtlch\fcs1 \ab\af1 \ltrch\fcs0 \b\f1\cf1\lang1033\langfe1045\langfenp1045\insrsid8986051\charrsid8986051 8.}{\rtlch\fcs1 \af1 \ltrch\fcs0 \f1\cf1\lang1033\langfe1045\langfenp1045\insrsid8986051\charrsid8986051 \~ -If the distribution and/or use of the Program is restricted in -certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Program under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted - only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License. -\par }{\rtlch\fcs1 \ab\af1 \ltrch\fcs0 \b\f1\cf1\lang1033\langfe1045\langfenp1045\insrsid8986051\charrsid8986051 9.}{\rtlch\fcs1 \af1 \ltrch\fcs0 \f1\cf1\lang1033\langfe1045\langfenp1045\insrsid8986051\charrsid8986051 \~ -The Free Software Foundation may publish revised and/or new versions of the General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. -\par Each version is given a distinguishing version number. If the Program specifies a version number of this License whic -h applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of this License, -you may choose any version ever published by the Free Software Foundation. -\par }{\rtlch\fcs1 \ab\af1 \ltrch\fcs0 \b\f1\cf1\lang1033\langfe1045\langfenp1045\insrsid8986051\charrsid8986051 10.}{\rtlch\fcs1 \af1 \ltrch\fcs0 \f1\cf1\lang1033\langfe1045\langfenp1045\insrsid8986051\charrsid8986051 \~ -If you wish to incorporate parts of the Program into other free programs whose distribution conditions are different, write to the author to ask for permission. For software whic -h is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promo -ting the sharing and reuse of software generally. -\par }{\rtlch\fcs1 \ab\af1 \ltrch\fcs0 \b\f1\cf1\lang1033\langfe1045\langfenp1045\insrsid8986051\charrsid8986051 NO WARRANTY}{\rtlch\fcs1 \af1 \ltrch\fcs0 \f1\cf1\lang1033\langfe1045\langfenp1045\insrsid8986051\charrsid8986051 -\par }{\rtlch\fcs1 \ab\af1 \ltrch\fcs0 \b\f1\cf1\lang1033\langfe1045\langfenp1045\insrsid8986051\charrsid8986051 11.}{\rtlch\fcs1 \af1 \ltrch\fcs0 \f1\cf1\lang1033\langfe1045\langfenp1045\insrsid8986051\charrsid8986051 \~ -BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS -AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AN -D PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. -\par }{\rtlch\fcs1 \ab\af1 \ltrch\fcs0 \b\f1\cf1\lang1033\langfe1045\langfenp1045\insrsid8986051\charrsid8986051 12.}{\rtlch\fcs1 \af1 \ltrch\fcs0 \f1\cf1\lang1033\langfe1045\langfenp1045\insrsid8986051\charrsid8986051 \~ -IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL - -OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER -PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. -\par }\pard \ltrpar\ql \li0\ri0\sb240\sa192\widctlpar\wrapdefault\aspalpha\aspnum\faauto\outlinelevel2\adjustright\rin0\lin0\itap0\pararsid8986051 \cbpat8 {\rtlch\fcs1 \ab\af1\afs36 \ltrch\fcs0 -\b\f1\fs36\cf17\lang1033\langfe1045\langfenp1045\insrsid8986051\charrsid8986051 END OF TERMS AND CONDITIONS -\par How to Apply These Terms to Your New Programs -\par }\pard \ltrpar\ql \li0\ri0\sb240\sa240\sl312\slmult0\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\pararsid8986051 \cbpat8 {\rtlch\fcs1 \af1 \ltrch\fcs0 \f1\cf1\lang1033\langfe1045\langfenp1045\insrsid8986051\charrsid8986051 -If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. -\par To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most e -ffectively convey the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. -\par }\pard \ltrpar\ql \li0\ri0\sb240\sa240\widctlpar -\tx916\tx1832\tx2748\tx3664\tx4580\tx5496\tx6412\tx7328\tx8244\tx9160\tx10076\tx10992\tx11908\tx12824\tx13740\tx14656\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\pararsid8986051\contextualspace \cbpat8 {\rtlch\fcs1 \ai\af2\afs20 -\ltrch\fcs0 \f2\fs20\cf1\lang1033\langfe1045\langfenp1045\insrsid8986051\charrsid8986051 one line to give the program's name and an idea of what it does.}{\rtlch\fcs1 \af2\afs20 \ltrch\fcs0 -\f2\fs20\cf1\lang1033\langfe1045\langfenp1045\insrsid8986051\charrsid8986051 -\par Copyright (C) }{\rtlch\fcs1 \ai\af2\afs20 \ltrch\fcs0 \f2\fs20\cf1\lang1033\langfe1045\langfenp1045\insrsid8986051\charrsid8986051 yyyy}{\rtlch\fcs1 \af2\afs20 \ltrch\fcs0 \f2\fs20\cf1\lang1033\langfe1045\langfenp1045\insrsid8986051\charrsid8986051 }{ -\rtlch\fcs1 \ai\af2\afs20 \ltrch\fcs0 \f2\fs20\cf1\lang1033\langfe1045\langfenp1045\insrsid8986051\charrsid8986051 name of author}{\rtlch\fcs1 \af2\afs20 \ltrch\fcs0 \f2\fs20\cf1\lang1033\langfe1045\langfenp1045\insrsid8986051\charrsid8986051 -\par -\par This program is free software; you can redistribute it and/or -\par modify it under the terms of the GNU General Public License -\par as published by the Free Software Foundation; either version 2 -\par of the License, or (at your option) any later version. -\par -\par This program is distributed in the hope that it will be useful, -\par but WITHOUT ANY WARRANTY; without even the implied warranty of -\par MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -\par GNU General Public License for more details. -\par -\par You should have received a copy of the GNU General Public License -\par along with this program; if not, write to the Free Software -\par Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.}{\rtlch\fcs1 \af2\afs20 \ltrch\fcs0 \f2\fs20\cf1\lang1033\langfe1045\langfenp1045\insrsid8986051 -\par }{\rtlch\fcs1 \af2\afs20 \ltrch\fcs0 \f2\fs20\cf1\lang1033\langfe1045\langfenp1045\insrsid8986051\charrsid8986051 -\par }\pard \ltrpar\ql \li0\ri0\sb240\sa240\sl312\slmult0\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\pararsid8986051 \cbpat8 {\rtlch\fcs1 \af1 \ltrch\fcs0 \f1\cf1\lang1033\langfe1045\langfenp1045\insrsid8986051\charrsid8986051 -Also add information on how to contact you by electronic and paper mail. -\par If the program is interactive, make it output a short notice like this when it starts in an interactive mode: -\par }\pard \ltrpar\ql \li0\ri0\sb240\sa240\widctlpar -\tx916\tx1832\tx2748\tx3664\tx4580\tx5496\tx6412\tx7328\tx8244\tx9160\tx10076\tx10992\tx11908\tx12824\tx13740\tx14656\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\pararsid8986051\contextualspace \cbpat8 {\rtlch\fcs1 \af2\afs20 -\ltrch\fcs0 \f2\fs20\cf1\lang1033\langfe1045\langfenp1045\insrsid8986051\charrsid8986051 Gnomovision version 69, Copyright (C) }{\rtlch\fcs1 \ai\af2\afs20 \ltrch\fcs0 \i\f2\fs20\cf1\lang1033\langfe1045\langfenp1045\insrsid8986051\charrsid8986051 year}{ -\rtlch\fcs1 \af2\afs20 \ltrch\fcs0 \f2\fs20\cf1\lang1033\langfe1045\langfenp1045\insrsid8986051\charrsid8986051 }{\rtlch\fcs1 \ai\af2\afs20 \ltrch\fcs0 \i\f2\fs20\cf1\lang1033\langfe1045\langfenp1045\insrsid8986051\charrsid8986051 name of author}{ -\rtlch\fcs1 \af2\afs20 \ltrch\fcs0 \f2\fs20\cf1\lang1033\langfe1045\langfenp1045\insrsid8986051\charrsid8986051 -\par Gnomovision comes with ABSOLUTELY NO WARRANTY; for details -\par type `show w'. This is free software, and you are welcome -\par to redistribute it under certain conditions; type `show c' -\par for details.}{\rtlch\fcs1 \af2\afs20 \ltrch\fcs0 \f2\fs20\cf1\lang1033\langfe1045\langfenp1045\insrsid8986051 -\par }{\rtlch\fcs1 \af2\afs20 \ltrch\fcs0 \f2\fs20\cf1\lang1033\langfe1045\langfenp1045\insrsid8986051\charrsid8986051 -\par }\pard \ltrpar\ql \li0\ri0\sb240\sa240\sl312\slmult0\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\pararsid8986051 \cbpat8 {\rtlch\fcs1 \af1 \ltrch\fcs0 \f1\cf1\lang1033\langfe1045\langfenp1045\insrsid8986051\charrsid8986051 -The hypothetical commands\~}{\rtlch\fcs1 \af2 \ltrch\fcs0 \f2\cf1\lang1033\langfe1045\langfenp1045\insrsid8986051\charrsid8986051 `show w'}{\rtlch\fcs1 \af1 \ltrch\fcs0 \f1\cf1\lang1033\langfe1045\langfenp1045\insrsid8986051\charrsid8986051 \~and\~}{ -\rtlch\fcs1 \af2 \ltrch\fcs0 \f2\cf1\lang1033\langfe1045\langfenp1045\insrsid8986051\charrsid8986051 `show c'}{\rtlch\fcs1 \af1 \ltrch\fcs0 \f1\cf1\lang1033\langfe1045\langfenp1045\insrsid8986051\charrsid8986051 \~ -should show the appropriate parts of the General Public License. Of course, the commands you use may be called something other than\~}{\rtlch\fcs1 \af2 \ltrch\fcs0 \f2\cf1\lang1033\langfe1045\langfenp1045\insrsid8986051\charrsid8986051 `show w'}{ -\rtlch\fcs1 \af1 \ltrch\fcs0 \f1\cf1\lang1033\langfe1045\langfenp1045\insrsid8986051\charrsid8986051 \~and\~}{\rtlch\fcs1 \af2 \ltrch\fcs0 \f2\cf1\lang1033\langfe1045\langfenp1045\insrsid8986051\charrsid8986051 `show c'}{\rtlch\fcs1 \af1 \ltrch\fcs0 -\f1\cf1\lang1033\langfe1045\langfenp1045\insrsid8986051\charrsid8986051 ; they could even be mouse-clicks or menu items--whatever suits your program. -\par You should also get your employer (if you work as a programmer) or your school, if any, to sign a "copyright disclaimer" for the program, if necessary. Here is a sample; alter the names: -\par }\pard \ltrpar\ql \li0\ri0\sb240\sa240\widctlpar -\tx916\tx1832\tx2748\tx3664\tx4580\tx5496\tx6412\tx7328\tx8244\tx9160\tx10076\tx10992\tx11908\tx12824\tx13740\tx14656\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\pararsid8986051\contextualspace \cbpat8 {\rtlch\fcs1 \af2\afs20 -\ltrch\fcs0 \f2\fs20\cf1\lang1033\langfe1045\langfenp1045\insrsid8986051\charrsid8986051 Yoyodyne, Inc., hereby disclaims all copyright -\par interest in the program `Gnomovision' -\par (which makes passes at compilers) written -\par by James Hacker. -\par -\par }{\rtlch\fcs1 \ai\af2\afs20 \ltrch\fcs0 \f2\fs20\cf1\lang1033\langfe1045\langfenp1045\insrsid8986051\charrsid8986051 signature of Ty Coon}{\rtlch\fcs1 \af2\afs20 \ltrch\fcs0 \f2\fs20\cf1\lang1033\langfe1045\langfenp1045\insrsid8986051\charrsid8986051 -, 1 April 1989 -\par Ty Coon, President of Vice}{\rtlch\fcs1 \af2\afs20 \ltrch\fcs0 \f2\fs20\cf1\lang1033\langfe1045\langfenp1045\insrsid8986051 -\par }{\rtlch\fcs1 \af2\afs20 \ltrch\fcs0 \f2\fs20\cf1\lang1033\langfe1045\langfenp1045\insrsid8986051\charrsid8986051 -\par }\pard \ltrpar\ql \li0\ri0\sb240\sa240\sl312\slmult0\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\pararsid8986051 \cbpat8 {\rtlch\fcs1 \af1 \ltrch\fcs0 \f1\cf1\lang1033\langfe1045\langfenp1045\insrsid8986051\charrsid8986051 -This General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If - this is what you want to do, use the\~}{\field\fldedit{\*\fldinst {\rtlch\fcs1 \af1 \ltrch\fcs0 \f1\cf1\lang1033\langfe1045\langfenp1045\insrsid8986051\charrsid8986051 HYPERLINK "http://www.gnu.org/licenses/lgpl.html" }}{\fldrslt {\rtlch\fcs1 \af1 -\ltrch\fcs0 \f1\ul\cf18\lang1033\langfe1045\langfenp1045\insrsid8986051\charrsid8986051 GNU Lesser General Public License}}}\sectd \ltrsect\linex0\headery708\footery708\colsx708\endnhere\sectlinegrid360\sectdefaultcl\sectrsid3754175\sftnbj {\rtlch\fcs1 -\af1 \ltrch\fcs0 \f1\cf1\lang1033\langfe1045\langfenp1045\insrsid8986051\charrsid8986051 \~instead of this License. -\par }\pard \ltrpar\ql \li0\ri0\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\pararsid8986051 {\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid3754175\charrsid8986051 -\par }{\*\themedata 504b030414000600080000002100e9de0fbfff0000001c020000130000005b436f6e74656e745f54797065735d2e786d6cac91cb4ec3301045f748fc83e52d4a -9cb2400825e982c78ec7a27cc0c8992416c9d8b2a755fbf74cd25442a820166c2cd933f79e3be372bd1f07b5c3989ca74aaff2422b24eb1b475da5df374fd9ad -5689811a183c61a50f98f4babebc2837878049899a52a57be670674cb23d8e90721f90a4d2fa3802cb35762680fd800ecd7551dc18eb899138e3c943d7e503b6 -b01d583deee5f99824e290b4ba3f364eac4a430883b3c092d4eca8f946c916422ecab927f52ea42b89a1cd59c254f919b0e85e6535d135a8de20f20b8c12c3b0 -0c895fcf6720192de6bf3b9e89ecdbd6596cbcdd8eb28e7c365ecc4ec1ff1460f53fe813d3cc7f5b7f020000ffff0300504b030414000600080000002100a5d6 -a7e7c0000000360100000b0000005f72656c732f2e72656c73848fcf6ac3300c87ef85bd83d17d51d2c31825762fa590432fa37d00e1287f68221bdb1bebdb4f -c7060abb0884a4eff7a93dfeae8bf9e194e720169aaa06c3e2433fcb68e1763dbf7f82c985a4a725085b787086a37bdbb55fbc50d1a33ccd311ba548b6309512 -0f88d94fbc52ae4264d1c910d24a45db3462247fa791715fd71f989e19e0364cd3f51652d73760ae8fa8c9ffb3c330cc9e4fc17faf2ce545046e37944c69e462 -a1a82fe353bd90a865aad41ed0b5b8f9d6fd010000ffff0300504b0304140006000800000021006b799616830000008a0000001c0000007468656d652f746865 -6d652f7468656d654d616e616765722e786d6c0ccc4d0ac3201040e17da17790d93763bb284562b2cbaebbf600439c1a41c7a0d29fdbd7e5e38337cedf14d59b -4b0d592c9c070d8a65cd2e88b7f07c2ca71ba8da481cc52c6ce1c715e6e97818c9b48d13df49c873517d23d59085adb5dd20d6b52bd521ef2cdd5eb9246a3d8b -4757e8d3f729e245eb2b260a0238fd010000ffff0300504b030414000600080000002100aa5225dfc60600008b1a0000160000007468656d652f7468656d652f -7468656d65312e786d6cec595d8bdb46147d2ff43f08bd3bfe92fcb1c41b6cd9ceb6d94d42eca4e4716c8fadc98e344633de8d0981923c160aa569e943037deb -43691b48a02fe9afd936a54d217fa17746b63c638fbb9b2585a5640d8b343af7ce997bafce1d4997afdc8fa87384134e58dc708b970aae83e3211b9178d2706f -f7bbb99aeb7081e211a22cc60d778eb97b65f7c30f2ea31d11e2083b601ff31dd4704321a63bf93c1fc230e297d814c7706dcc920809384d26f951828ec16f44 -f3a542a1928f10895d274611b8bd311e932176fad2a5bbbb74dea1701a0b2e078634e949d7d8b050d8d1615122f89c0734718e106db830cf881df7f17de13a14 -7101171a6e41fdb9f9ddcb79b4b330a2628bad66d7557f0bbb85c1e8b0a4e64c26836c52cff3bd4a33f3af00546ce23ad54ea553c9fc29001a0e61a52917dda7 -dfaab7dafe02ab81d2438bef76b55d2e1a78cd7f798373d3973f03af40a97f6f03dfed06104503af4029dedfc07b5eb51478065e81527c65035f2d34db5ed5c0 -2b5048497cb8812ef89572b05c6d061933ba6785d77daf5b2d2d9caf50500d5975c929c62c16db6a2d42f758d2058004522448ec88f9148fd110aa3840940c12 -e2ec93490885374531e3305c2815ba8532fc973f4f1da988a01d8c346bc90b98f08d21c9c7e1c3844c45c3fd18bcba1ae4cdcb1fdfbc7cee9c3c7a71f2e89793 -c78f4f1efd9c3a32acf6503cd1ad5e7fffc5df4f3f75fe7afeddeb275fd9f15cc7fffed367bffdfaa51d082b5d85e0d5d7cffe78f1ecd5379ffff9c3130bbc99 -a0810eef930873e73a3e766eb10816a6426032c783e4ed2cfa2122ba45339e701423398bc57f478406fafa1c5164c1b5b019c13b09488c0d787576cf20dc0b93 -9920168fd7c2c8001e30465b2cb146e19a9c4b0b737f164fec9327331d770ba123dbdc018a8dfc766653d05662731984d8a07993a258a0098eb170e4357688b1 -6575770931e27a408609e36c2c9cbbc46921620d499f0c8c6a5a19ed9108f232b711847c1bb139b8e3b418b5adba8d8f4c24dc15885ac8f73135c27815cd048a -6c2efb28a27ac0f791086d247bf364a8e33a5c40a6279832a733c29cdb6c6e24b05e2de9d7405eec693fa0f3c84426821cda7cee23c674649b1d06218aa6366c -8fc4a18efd881f428922e7261336f80133ef10790e7940f1d674df21d848f7e96a701b9455a7b42a107965965872791533a37e7b733a4658490d08bfa1e71189 -4f15f73559f7ff5b5907217df5ed53cbaa2eaaa0371362bda3f6d6647c1b6e5dbc03968cc8c5d7ee369ac53731dc2e9b0decbd74bf976ef77f2fdddbeee7772f -d82b8d06f9965bc574abae36eed1d67dfb9850da13738af7b9daba73e84ca32e0c4a3bf5cc8ab3e7b8690887f24e86090cdc2441cac64998f88488b017a229ec -ef8bae7432e10bd713ee4c19876dbf1ab6fa96783a8b0ed8287d5c2d16e5a3692a1e1c89d578c1cfc6e15143a4e84a75f50896b9576c27ea51794940dabe0d09 -6d329344d942a2ba1c9441520fe610340b09b5b277c2a26e615193ee97a9da6001d4b2acc0d6c9810d57c3f53d30012378a242148f649ed2542fb3ab92f92e33 -bd2d984605c03e625901ab4cd725d7adcb93ab4b4bed0c99364868e566925091513d8c87688417d52947cf42e36d735d5fa5d4a02743a1e683d25ad1a8d6fe8d -c579730d76ebda40635d2968ec1c37dc4ad9879219a269c31dc3633f1c4653a81d2eb7bc884ee0ddd95024e90d7f1e6599265cb4110fd3802bd149d520220227 -0e2551c395cbcfd24063a5218a5bb104827061c9d541562e1a3948ba99643c1ee3a1d0d3ae8dc848a7a7a0f0a95658af2af3f383a5259b41ba7be1e8d819d059 -720b4189f9d5a20ce0887078fb534ca33922f03a3313b255fdad35a685eceaef13550da5e3884e43b4e828ba98a77025e5191d7596c5403b5bac1902aa8564d1 -080713d960f5a01add34eb1a2987ad5df7742319394d34573dd35015d935ed2a66ccb06c036bb13c5f93d7582d430c9aa677f854bad725b7bed4bab57d42d625 -20e059fc2c5df70c0d41a3b69acca026196fcab0d4ecc5a8d93b960b3c85da599a84a6fa95a5dbb5b8653dc23a1d0c9eabf383dd7ad5c2d078b9af549156df3d -f44f136c700fc4a30d2f81675470954af8f09020d810f5d49e24950db845ee8bc5ad0147ce2c210df741c16f7a41c90f72859adfc97965af90abf9cd72aee9fb -e562c72f16daadd243682c228c8a7efacda50bafa2e87cf1e5458d6f7c7d89966fdb2e0d599467eaeb4a5e11575f5f8aa5ed5f5f1c02a2f3a052ead6cbf55625 -572f37bb39afddaae5ea41a5956b57826abbdb0efc5abdfbd0758e14d86b9603afd2a9e52ac520c8799582a45fabe7aa5ea9d4f4aacd5ac76b3e5c6c6360e5a9 -7c2c6201e155bc76ff010000ffff0300504b0304140006000800000021000dd1909fb60000001b010000270000007468656d652f7468656d652f5f72656c732f -7468656d654d616e616765722e786d6c2e72656c73848f4d0ac2301484f78277086f6fd3ba109126dd88d0add40384e4350d363f2451eced0dae2c082e8761be -9969bb979dc9136332de3168aa1a083ae995719ac16db8ec8e4052164e89d93b64b060828e6f37ed1567914b284d262452282e3198720e274a939cd08a54f980 -ae38a38f56e422a3a641c8bbd048f7757da0f19b017cc524bd62107bd5001996509affb3fd381a89672f1f165dfe514173d9850528a2c6cce0239baa4c04ca5b -babac4df000000ffff0300504b01022d0014000600080000002100e9de0fbfff0000001c0200001300000000000000000000000000000000005b436f6e74656e -745f54797065735d2e786d6c504b01022d0014000600080000002100a5d6a7e7c0000000360100000b00000000000000000000000000300100005f72656c732f -2e72656c73504b01022d00140006000800000021006b799616830000008a0000001c00000000000000000000000000190200007468656d652f7468656d652f74 -68656d654d616e616765722e786d6c504b01022d0014000600080000002100aa5225dfc60600008b1a00001600000000000000000000000000d6020000746865 -6d652f7468656d652f7468656d65312e786d6c504b01022d00140006000800000021000dd1909fb60000001b0100002700000000000000000000000000d00900007468656d652f7468656d652f5f72656c732f7468656d654d616e616765722e786d6c2e72656c73504b050600000000050005005d010000cb0a00000000} -{\*\colorschememapping 3c3f786d6c2076657273696f6e3d22312e302220656e636f64696e673d225554462d3822207374616e64616c6f6e653d22796573223f3e0d0a3c613a636c724d -617020786d6c6e733a613d22687474703a2f2f736368656d61732e6f70656e786d6c666f726d6174732e6f72672f64726177696e676d6c2f323030362f6d6169 -6e22206267313d226c743122207478313d22646b3122206267323d226c743222207478323d22646b322220616363656e74313d22616363656e74312220616363 -656e74323d22616363656e74322220616363656e74333d22616363656e74332220616363656e74343d22616363656e74342220616363656e74353d22616363656e74352220616363656e74363d22616363656e74362220686c696e6b3d22686c696e6b2220666f6c486c696e6b3d22666f6c486c696e6b222f3e} -{\*\latentstyles\lsdstimax371\lsdlockeddef0\lsdsemihiddendef0\lsdunhideuseddef0\lsdqformatdef0\lsdprioritydef99{\lsdlockedexcept \lsdqformat1 \lsdpriority0 \lsdlocked0 Normal;\lsdqformat1 \lsdpriority9 \lsdlocked0 heading 1; -\lsdsemihidden1 \lsdunhideused1 \lsdqformat1 \lsdpriority9 \lsdlocked0 heading 2;\lsdsemihidden1 \lsdunhideused1 \lsdqformat1 \lsdpriority9 \lsdlocked0 heading 3;\lsdsemihidden1 \lsdunhideused1 \lsdqformat1 \lsdpriority9 \lsdlocked0 heading 4; -\lsdsemihidden1 \lsdunhideused1 \lsdqformat1 \lsdpriority9 \lsdlocked0 heading 5;\lsdsemihidden1 \lsdunhideused1 \lsdqformat1 \lsdpriority9 \lsdlocked0 heading 6;\lsdsemihidden1 \lsdunhideused1 \lsdqformat1 \lsdpriority9 \lsdlocked0 heading 7; -\lsdsemihidden1 \lsdunhideused1 \lsdqformat1 \lsdpriority9 \lsdlocked0 heading 8;\lsdsemihidden1 \lsdunhideused1 \lsdqformat1 \lsdpriority9 \lsdlocked0 heading 9;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 index 1; -\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 index 2;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 index 3;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 index 4;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 index 5; -\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 index 6;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 index 7;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 index 8;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 index 9; -\lsdsemihidden1 \lsdunhideused1 \lsdpriority39 \lsdlocked0 toc 1;\lsdsemihidden1 \lsdunhideused1 \lsdpriority39 \lsdlocked0 toc 2;\lsdsemihidden1 \lsdunhideused1 \lsdpriority39 \lsdlocked0 toc 3; -\lsdsemihidden1 \lsdunhideused1 \lsdpriority39 \lsdlocked0 toc 4;\lsdsemihidden1 \lsdunhideused1 \lsdpriority39 \lsdlocked0 toc 5;\lsdsemihidden1 \lsdunhideused1 \lsdpriority39 \lsdlocked0 toc 6; -\lsdsemihidden1 \lsdunhideused1 \lsdpriority39 \lsdlocked0 toc 7;\lsdsemihidden1 \lsdunhideused1 \lsdpriority39 \lsdlocked0 toc 8;\lsdsemihidden1 \lsdunhideused1 \lsdpriority39 \lsdlocked0 toc 9;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Normal Indent; -\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 footnote text;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 annotation text;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 header;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 footer; -\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 index heading;\lsdsemihidden1 \lsdunhideused1 \lsdqformat1 \lsdpriority35 \lsdlocked0 caption;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 table of figures; -\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 envelope address;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 envelope return;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 footnote reference;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 annotation reference; -\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 line number;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 page number;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 endnote reference;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 endnote text; -\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 table of authorities;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 macro;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 toa heading;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List; -\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Bullet;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Number;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List 2;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List 3; -\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List 4;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List 5;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Bullet 2;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Bullet 3; -\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Bullet 4;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Bullet 5;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Number 2;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Number 3; -\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Number 4;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Number 5;\lsdqformat1 \lsdpriority10 \lsdlocked0 Title;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Closing; -\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Signature;\lsdsemihidden1 \lsdunhideused1 \lsdpriority1 \lsdlocked0 Default Paragraph Font;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Body Text;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Body Text Indent; -\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Continue;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Continue 2;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Continue 3;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Continue 4; -\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Continue 5;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Message Header;\lsdqformat1 \lsdpriority11 \lsdlocked0 Subtitle;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Salutation; -\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Date;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Body Text First Indent;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Body Text First Indent 2;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Note Heading; -\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Body Text 2;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Body Text 3;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Body Text Indent 2;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Body Text Indent 3; -\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Block Text;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Hyperlink;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 FollowedHyperlink;\lsdqformat1 \lsdpriority22 \lsdlocked0 Strong; -\lsdqformat1 \lsdpriority20 \lsdlocked0 Emphasis;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Document Map;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Plain Text;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 E-mail Signature; -\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 HTML Top of Form;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 HTML Bottom of Form;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Normal (Web);\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 HTML Acronym; -\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 HTML Address;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 HTML Cite;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 HTML Code;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 HTML Definition; -\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 HTML Keyboard;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 HTML Preformatted;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 HTML Sample;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 HTML Typewriter; -\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 HTML Variable;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 annotation subject;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 No List;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Outline List 1; -\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Outline List 2;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Outline List 3;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Balloon Text;\lsdpriority39 \lsdlocked0 Table Grid; -\lsdsemihidden1 \lsdlocked0 Placeholder Text;\lsdqformat1 \lsdpriority1 \lsdlocked0 No Spacing;\lsdpriority60 \lsdlocked0 Light Shading;\lsdpriority61 \lsdlocked0 Light List;\lsdpriority62 \lsdlocked0 Light Grid; -\lsdpriority63 \lsdlocked0 Medium Shading 1;\lsdpriority64 \lsdlocked0 Medium Shading 2;\lsdpriority65 \lsdlocked0 Medium List 1;\lsdpriority66 \lsdlocked0 Medium List 2;\lsdpriority67 \lsdlocked0 Medium Grid 1;\lsdpriority68 \lsdlocked0 Medium Grid 2; -\lsdpriority69 \lsdlocked0 Medium Grid 3;\lsdpriority70 \lsdlocked0 Dark List;\lsdpriority71 \lsdlocked0 Colorful Shading;\lsdpriority72 \lsdlocked0 Colorful List;\lsdpriority73 \lsdlocked0 Colorful Grid;\lsdpriority60 \lsdlocked0 Light Shading Accent 1; -\lsdpriority61 \lsdlocked0 Light List Accent 1;\lsdpriority62 \lsdlocked0 Light Grid Accent 1;\lsdpriority63 \lsdlocked0 Medium Shading 1 Accent 1;\lsdpriority64 \lsdlocked0 Medium Shading 2 Accent 1;\lsdpriority65 \lsdlocked0 Medium List 1 Accent 1; -\lsdsemihidden1 \lsdlocked0 Revision;\lsdqformat1 \lsdpriority34 \lsdlocked0 List Paragraph;\lsdqformat1 \lsdpriority29 \lsdlocked0 Quote;\lsdqformat1 \lsdpriority30 \lsdlocked0 Intense Quote;\lsdpriority66 \lsdlocked0 Medium List 2 Accent 1; -\lsdpriority67 \lsdlocked0 Medium Grid 1 Accent 1;\lsdpriority68 \lsdlocked0 Medium Grid 2 Accent 1;\lsdpriority69 \lsdlocked0 Medium Grid 3 Accent 1;\lsdpriority70 \lsdlocked0 Dark List Accent 1;\lsdpriority71 \lsdlocked0 Colorful Shading Accent 1; -\lsdpriority72 \lsdlocked0 Colorful List Accent 1;\lsdpriority73 \lsdlocked0 Colorful Grid Accent 1;\lsdpriority60 \lsdlocked0 Light Shading Accent 2;\lsdpriority61 \lsdlocked0 Light List Accent 2;\lsdpriority62 \lsdlocked0 Light Grid Accent 2; -\lsdpriority63 \lsdlocked0 Medium Shading 1 Accent 2;\lsdpriority64 \lsdlocked0 Medium Shading 2 Accent 2;\lsdpriority65 \lsdlocked0 Medium List 1 Accent 2;\lsdpriority66 \lsdlocked0 Medium List 2 Accent 2; -\lsdpriority67 \lsdlocked0 Medium Grid 1 Accent 2;\lsdpriority68 \lsdlocked0 Medium Grid 2 Accent 2;\lsdpriority69 \lsdlocked0 Medium Grid 3 Accent 2;\lsdpriority70 \lsdlocked0 Dark List Accent 2;\lsdpriority71 \lsdlocked0 Colorful Shading Accent 2; -\lsdpriority72 \lsdlocked0 Colorful List Accent 2;\lsdpriority73 \lsdlocked0 Colorful Grid Accent 2;\lsdpriority60 \lsdlocked0 Light Shading Accent 3;\lsdpriority61 \lsdlocked0 Light List Accent 3;\lsdpriority62 \lsdlocked0 Light Grid Accent 3; -\lsdpriority63 \lsdlocked0 Medium Shading 1 Accent 3;\lsdpriority64 \lsdlocked0 Medium Shading 2 Accent 3;\lsdpriority65 \lsdlocked0 Medium List 1 Accent 3;\lsdpriority66 \lsdlocked0 Medium List 2 Accent 3; -\lsdpriority67 \lsdlocked0 Medium Grid 1 Accent 3;\lsdpriority68 \lsdlocked0 Medium Grid 2 Accent 3;\lsdpriority69 \lsdlocked0 Medium Grid 3 Accent 3;\lsdpriority70 \lsdlocked0 Dark List Accent 3;\lsdpriority71 \lsdlocked0 Colorful Shading Accent 3; -\lsdpriority72 \lsdlocked0 Colorful List Accent 3;\lsdpriority73 \lsdlocked0 Colorful Grid Accent 3;\lsdpriority60 \lsdlocked0 Light Shading Accent 4;\lsdpriority61 \lsdlocked0 Light List Accent 4;\lsdpriority62 \lsdlocked0 Light Grid Accent 4; -\lsdpriority63 \lsdlocked0 Medium Shading 1 Accent 4;\lsdpriority64 \lsdlocked0 Medium Shading 2 Accent 4;\lsdpriority65 \lsdlocked0 Medium List 1 Accent 4;\lsdpriority66 \lsdlocked0 Medium List 2 Accent 4; -\lsdpriority67 \lsdlocked0 Medium Grid 1 Accent 4;\lsdpriority68 \lsdlocked0 Medium Grid 2 Accent 4;\lsdpriority69 \lsdlocked0 Medium Grid 3 Accent 4;\lsdpriority70 \lsdlocked0 Dark List Accent 4;\lsdpriority71 \lsdlocked0 Colorful Shading Accent 4; -\lsdpriority72 \lsdlocked0 Colorful List Accent 4;\lsdpriority73 \lsdlocked0 Colorful Grid Accent 4;\lsdpriority60 \lsdlocked0 Light Shading Accent 5;\lsdpriority61 \lsdlocked0 Light List Accent 5;\lsdpriority62 \lsdlocked0 Light Grid Accent 5; -\lsdpriority63 \lsdlocked0 Medium Shading 1 Accent 5;\lsdpriority64 \lsdlocked0 Medium Shading 2 Accent 5;\lsdpriority65 \lsdlocked0 Medium List 1 Accent 5;\lsdpriority66 \lsdlocked0 Medium List 2 Accent 5; -\lsdpriority67 \lsdlocked0 Medium Grid 1 Accent 5;\lsdpriority68 \lsdlocked0 Medium Grid 2 Accent 5;\lsdpriority69 \lsdlocked0 Medium Grid 3 Accent 5;\lsdpriority70 \lsdlocked0 Dark List Accent 5;\lsdpriority71 \lsdlocked0 Colorful Shading Accent 5; -\lsdpriority72 \lsdlocked0 Colorful List Accent 5;\lsdpriority73 \lsdlocked0 Colorful Grid Accent 5;\lsdpriority60 \lsdlocked0 Light Shading Accent 6;\lsdpriority61 \lsdlocked0 Light List Accent 6;\lsdpriority62 \lsdlocked0 Light Grid Accent 6; -\lsdpriority63 \lsdlocked0 Medium Shading 1 Accent 6;\lsdpriority64 \lsdlocked0 Medium Shading 2 Accent 6;\lsdpriority65 \lsdlocked0 Medium List 1 Accent 6;\lsdpriority66 \lsdlocked0 Medium List 2 Accent 6; -\lsdpriority67 \lsdlocked0 Medium Grid 1 Accent 6;\lsdpriority68 \lsdlocked0 Medium Grid 2 Accent 6;\lsdpriority69 \lsdlocked0 Medium Grid 3 Accent 6;\lsdpriority70 \lsdlocked0 Dark List Accent 6;\lsdpriority71 \lsdlocked0 Colorful Shading Accent 6; -\lsdpriority72 \lsdlocked0 Colorful List Accent 6;\lsdpriority73 \lsdlocked0 Colorful Grid Accent 6;\lsdqformat1 \lsdpriority19 \lsdlocked0 Subtle Emphasis;\lsdqformat1 \lsdpriority21 \lsdlocked0 Intense Emphasis; -\lsdqformat1 \lsdpriority31 \lsdlocked0 Subtle Reference;\lsdqformat1 \lsdpriority32 \lsdlocked0 Intense Reference;\lsdqformat1 \lsdpriority33 \lsdlocked0 Book Title;\lsdsemihidden1 \lsdunhideused1 \lsdpriority37 \lsdlocked0 Bibliography; -\lsdsemihidden1 \lsdunhideused1 \lsdqformat1 \lsdpriority39 \lsdlocked0 TOC Heading;\lsdpriority41 \lsdlocked0 Plain Table 1;\lsdpriority42 \lsdlocked0 Plain Table 2;\lsdpriority43 \lsdlocked0 Plain Table 3;\lsdpriority44 \lsdlocked0 Plain Table 4; -\lsdpriority45 \lsdlocked0 Plain Table 5;\lsdpriority40 \lsdlocked0 Grid Table Light;\lsdpriority46 \lsdlocked0 Grid Table 1 Light;\lsdpriority47 \lsdlocked0 Grid Table 2;\lsdpriority48 \lsdlocked0 Grid Table 3;\lsdpriority49 \lsdlocked0 Grid Table 4; -\lsdpriority50 \lsdlocked0 Grid Table 5 Dark;\lsdpriority51 \lsdlocked0 Grid Table 6 Colorful;\lsdpriority52 \lsdlocked0 Grid Table 7 Colorful;\lsdpriority46 \lsdlocked0 Grid Table 1 Light Accent 1;\lsdpriority47 \lsdlocked0 Grid Table 2 Accent 1; -\lsdpriority48 \lsdlocked0 Grid Table 3 Accent 1;\lsdpriority49 \lsdlocked0 Grid Table 4 Accent 1;\lsdpriority50 \lsdlocked0 Grid Table 5 Dark Accent 1;\lsdpriority51 \lsdlocked0 Grid Table 6 Colorful Accent 1; -\lsdpriority52 \lsdlocked0 Grid Table 7 Colorful Accent 1;\lsdpriority46 \lsdlocked0 Grid Table 1 Light Accent 2;\lsdpriority47 \lsdlocked0 Grid Table 2 Accent 2;\lsdpriority48 \lsdlocked0 Grid Table 3 Accent 2; -\lsdpriority49 \lsdlocked0 Grid Table 4 Accent 2;\lsdpriority50 \lsdlocked0 Grid Table 5 Dark Accent 2;\lsdpriority51 \lsdlocked0 Grid Table 6 Colorful Accent 2;\lsdpriority52 \lsdlocked0 Grid Table 7 Colorful Accent 2; -\lsdpriority46 \lsdlocked0 Grid Table 1 Light Accent 3;\lsdpriority47 \lsdlocked0 Grid Table 2 Accent 3;\lsdpriority48 \lsdlocked0 Grid Table 3 Accent 3;\lsdpriority49 \lsdlocked0 Grid Table 4 Accent 3; -\lsdpriority50 \lsdlocked0 Grid Table 5 Dark Accent 3;\lsdpriority51 \lsdlocked0 Grid Table 6 Colorful Accent 3;\lsdpriority52 \lsdlocked0 Grid Table 7 Colorful Accent 3;\lsdpriority46 \lsdlocked0 Grid Table 1 Light Accent 4; -\lsdpriority47 \lsdlocked0 Grid Table 2 Accent 4;\lsdpriority48 \lsdlocked0 Grid Table 3 Accent 4;\lsdpriority49 \lsdlocked0 Grid Table 4 Accent 4;\lsdpriority50 \lsdlocked0 Grid Table 5 Dark Accent 4; -\lsdpriority51 \lsdlocked0 Grid Table 6 Colorful Accent 4;\lsdpriority52 \lsdlocked0 Grid Table 7 Colorful Accent 4;\lsdpriority46 \lsdlocked0 Grid Table 1 Light Accent 5;\lsdpriority47 \lsdlocked0 Grid Table 2 Accent 5; -\lsdpriority48 \lsdlocked0 Grid Table 3 Accent 5;\lsdpriority49 \lsdlocked0 Grid Table 4 Accent 5;\lsdpriority50 \lsdlocked0 Grid Table 5 Dark Accent 5;\lsdpriority51 \lsdlocked0 Grid Table 6 Colorful Accent 5; -\lsdpriority52 \lsdlocked0 Grid Table 7 Colorful Accent 5;\lsdpriority46 \lsdlocked0 Grid Table 1 Light Accent 6;\lsdpriority47 \lsdlocked0 Grid Table 2 Accent 6;\lsdpriority48 \lsdlocked0 Grid Table 3 Accent 6; -\lsdpriority49 \lsdlocked0 Grid Table 4 Accent 6;\lsdpriority50 \lsdlocked0 Grid Table 5 Dark Accent 6;\lsdpriority51 \lsdlocked0 Grid Table 6 Colorful Accent 6;\lsdpriority52 \lsdlocked0 Grid Table 7 Colorful Accent 6; -\lsdpriority46 \lsdlocked0 List Table 1 Light;\lsdpriority47 \lsdlocked0 List Table 2;\lsdpriority48 \lsdlocked0 List Table 3;\lsdpriority49 \lsdlocked0 List Table 4;\lsdpriority50 \lsdlocked0 List Table 5 Dark; -\lsdpriority51 \lsdlocked0 List Table 6 Colorful;\lsdpriority52 \lsdlocked0 List Table 7 Colorful;\lsdpriority46 \lsdlocked0 List Table 1 Light Accent 1;\lsdpriority47 \lsdlocked0 List Table 2 Accent 1;\lsdpriority48 \lsdlocked0 List Table 3 Accent 1; -\lsdpriority49 \lsdlocked0 List Table 4 Accent 1;\lsdpriority50 \lsdlocked0 List Table 5 Dark Accent 1;\lsdpriority51 \lsdlocked0 List Table 6 Colorful Accent 1;\lsdpriority52 \lsdlocked0 List Table 7 Colorful Accent 1; -\lsdpriority46 \lsdlocked0 List Table 1 Light Accent 2;\lsdpriority47 \lsdlocked0 List Table 2 Accent 2;\lsdpriority48 \lsdlocked0 List Table 3 Accent 2;\lsdpriority49 \lsdlocked0 List Table 4 Accent 2; -\lsdpriority50 \lsdlocked0 List Table 5 Dark Accent 2;\lsdpriority51 \lsdlocked0 List Table 6 Colorful Accent 2;\lsdpriority52 \lsdlocked0 List Table 7 Colorful Accent 2;\lsdpriority46 \lsdlocked0 List Table 1 Light Accent 3; -\lsdpriority47 \lsdlocked0 List Table 2 Accent 3;\lsdpriority48 \lsdlocked0 List Table 3 Accent 3;\lsdpriority49 \lsdlocked0 List Table 4 Accent 3;\lsdpriority50 \lsdlocked0 List Table 5 Dark Accent 3; -\lsdpriority51 \lsdlocked0 List Table 6 Colorful Accent 3;\lsdpriority52 \lsdlocked0 List Table 7 Colorful Accent 3;\lsdpriority46 \lsdlocked0 List Table 1 Light Accent 4;\lsdpriority47 \lsdlocked0 List Table 2 Accent 4; -\lsdpriority48 \lsdlocked0 List Table 3 Accent 4;\lsdpriority49 \lsdlocked0 List Table 4 Accent 4;\lsdpriority50 \lsdlocked0 List Table 5 Dark Accent 4;\lsdpriority51 \lsdlocked0 List Table 6 Colorful Accent 4; -\lsdpriority52 \lsdlocked0 List Table 7 Colorful Accent 4;\lsdpriority46 \lsdlocked0 List Table 1 Light Accent 5;\lsdpriority47 \lsdlocked0 List Table 2 Accent 5;\lsdpriority48 \lsdlocked0 List Table 3 Accent 5; -\lsdpriority49 \lsdlocked0 List Table 4 Accent 5;\lsdpriority50 \lsdlocked0 List Table 5 Dark Accent 5;\lsdpriority51 \lsdlocked0 List Table 6 Colorful Accent 5;\lsdpriority52 \lsdlocked0 List Table 7 Colorful Accent 5; -\lsdpriority46 \lsdlocked0 List Table 1 Light Accent 6;\lsdpriority47 \lsdlocked0 List Table 2 Accent 6;\lsdpriority48 \lsdlocked0 List Table 3 Accent 6;\lsdpriority49 \lsdlocked0 List Table 4 Accent 6; -\lsdpriority50 \lsdlocked0 List Table 5 Dark Accent 6;\lsdpriority51 \lsdlocked0 List Table 6 Colorful Accent 6;\lsdpriority52 \lsdlocked0 List Table 7 Colorful Accent 6;}}{\*\datastore 010500000200000018000000 -4d73786d6c322e534158584d4c5265616465722e362e3000000000000000000000060000 -d0cf11e0a1b11ae1000000000000000000000000000000003e000300feff090006000000000000000000000001000000010000000000000000100000feffffff00000000feffffff0000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -fffffffffffffffffdfffffffeffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffff52006f006f007400200045006e00740072007900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000016000500ffffffffffffffffffffffff0c6ad98892f1d411a65f0040963251e50000000000000000000000001093 -513ab0ded101feffffff00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffff00000000000000000000000000000000000000000000000000000000 -00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffff0000000000000000000000000000000000000000000000000000 -000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffff000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000105000000000000}} \ No newline at end of file diff --git a/power_settings.bat b/power_settings.bat deleted file mode 100644 index 4634ce1..0000000 --- a/power_settings.bat +++ /dev/null @@ -1,19 +0,0 @@ -@echo off - -:: Set the default power scheme to High Performance -powercfg /setactive SCHEME_MIN - -:: Disable disk drive idle poweroff -powercfg /setacvalueindex SCHEME_MIN SUB_DISK DISKIDLE 0 -powercfg /setdcvalueindex SCHEME_MIN SUB_DISK DISKIDLE 0 - -:: Disable idle sleep & hibernation -powercfg /setacvalueindex SCHEME_MIN SUB_SLEEP STANDBYIDLE 0 -powercfg /setdcvalueindex SCHEME_MIN SUB_SLEEP STANDBYIDLE 0 -powercfg /setacvalueindex SCHEME_MIN SUB_SLEEP HIBERNATEIDLE 0 -powercfg /setdcvalueindex SCHEME_MIN SUB_SLEEP HIBERNATEIDLE 0 -powercfg -H off - -:: Disable idle video poweroff -powercfg /setacvalueindex SCHEME_MIN SUB_VIDEO VIDEOIDLE 0 -powercfg /setdcvalueindex SCHEME_MIN SUB_VIDEO VIDEOIDLE 0 diff --git a/qubes-tools-combined.wxs b/qubes-tools-combined.wxs deleted file mode 100644 index 576a89b..0000000 --- a/qubes-tools-combined.wxs +++ /dev/null @@ -1,709 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 1 - 1 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/qubes-tools.wxb b/qubes-tools.wxb deleted file mode 100644 index dbeaab2..0000000 --- a/qubes-tools.wxb +++ /dev/null @@ -1,43 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/qubes-tools.wxs b/qubes-tools.wxs deleted file mode 100644 index 9e27ea5..0000000 --- a/qubes-tools.wxs +++ /dev/null @@ -1,368 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 1 - 1 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/qubes-vmm-xen-windows-pvdrivers b/qubes-vmm-xen-windows-pvdrivers new file mode 160000 index 0000000..2d5b230 --- /dev/null +++ b/qubes-vmm-xen-windows-pvdrivers @@ -0,0 +1 @@ +Subproject commit 2d5b230f6ead75c8380b81aca431282c95f916d6 diff --git a/rel b/rel deleted file mode 100644 index 00750ed..0000000 --- a/rel +++ /dev/null @@ -1 +0,0 @@ -3 diff --git a/rpm_spec/win-iso.spec.in b/rpm_spec/win-iso.spec.in deleted file mode 100644 index aa61c7f..0000000 --- a/rpm_spec/win-iso.spec.in +++ /dev/null @@ -1,39 +0,0 @@ -%define build_number @REL@ - -Name: qubes-windows-tools -Version: @VERSION@ -Release: @REL@ -Summary: Qubes Tools for Windows VMs -Group: Qubes -License: GPL -Obsoletes: qubes-core-dom0-pvdrivers -BuildRequires: genisoimage -BuildArch: noarch -Source0: qubes-tools-WIN7x64-%{version}.%{release}.exe -Source1: iso-README.txt - -%prep -%setup -c -T - -%description -PV Drivers and Qubes Tools for Windows AppVMs. Bundled for Windows 7 64bit. - -%build - -mkdir -p iso-content -cp %{SOURCE0} iso-content/qubes-tools-%{version}.%{release}.exe -cp %{SOURCE1} iso-content/ -genisoimage -o qubes-windows-tools-%{version}.%{release}.iso -m .gitignore -JR iso-content - - -%install -mkdir -p $RPM_BUILD_ROOT/usr/lib/qubes/ -cp qubes-windows-tools-%{version}.%{release}.iso $RPM_BUILD_ROOT/usr/lib/qubes/ -ln -s qubes-windows-tools-%{version}.%{release}.iso $RPM_BUILD_ROOT/usr/lib/qubes/qubes-windows-tools.iso - -%files -/usr/lib/qubes/qubes-windows-tools-%{version}.%{release}.iso -/usr/lib/qubes/qubes-windows-tools.iso - -%changelog - diff --git a/set_version.bat b/set_version.bat deleted file mode 100644 index d9eab3f..0000000 --- a/set_version.bat +++ /dev/null @@ -1,3 +0,0 @@ -FOR /F %%V IN (version) DO SET VERSION_BASE=%%V -FOR /F %%V IN (rel) DO SET BUILD=%%V -SET VERSION=%VERSION_BASE%.%BUILD% diff --git a/set_version.ps1 b/set_version.ps1 deleted file mode 100644 index b5cbe33..0000000 --- a/set_version.ps1 +++ /dev/null @@ -1,10 +0,0 @@ -$version = Get-Content version -# qubes version has 3 parts, windows needs 4 -$version += ".0" -$version_str = "`"" + $version + "`"" -$version = %{$version -replace "\.", ","} -$hdr = "#define QTW_FILEVERSION " + $version + "`n" -$hdr += "#define QTW_FILEVERSION_STR " + $version_str + "`n" -$hdr += "#define QTW_PRODUCTVERSION 3.0.0.0`n" -$hdr += "#define QTW_PRODUCTVERSION_STR `"3.0.0.0`"`n" -Set-Content -Path "version.h" $hdr diff --git a/uninstaller/uninstaller.c b/uninstaller/uninstaller.c deleted file mode 100644 index cacdbaf..0000000 --- a/uninstaller/uninstaller.c +++ /dev/null @@ -1,94 +0,0 @@ -/* - * The Qubes OS Project, http://www.qubes-os.org - * - * Copyright (c) Invisible Things Lab - * - * This program is free software; you can redistribute it and/or - * modify it under the terms of the GNU General Public License - * as published by the Free Software Foundation; either version 2 - * of the License, or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. - * - */ - -#include -#include - -/* - * This utility performs post-uninstallation cleanup of Qubes Windows Tools. - * It's needed because MSI can't revert some changes done by the PV drivers co-installers - * (like inserting device stack filters for example). - * We should not depend on QWT libraries because they are already uninstalled at this point. - */ - -PWSTR serviceNames[] = { L"qvideo", L"xen", L"xenagent", L"xenlite", L"xenbus", L"xenfilt", L"xeniface", L"xennet", L"xenvif", L"xendisk", L"xenvbd" }; - -int wmain(int argc, WCHAR *argv[]) -{ - LONG status; - HKEY key; - - // delete QWT keys - status = RegOpenKeyEx(HKEY_LOCAL_MACHINE, L"Software", 0, KEY_ALL_ACCESS, &key); - if (status != ERROR_SUCCESS) - return status; - - RegDeleteTree(key, L"Invisible Things Lab"); // ignore failures in case it's already deleted - - status = RegCloseKey(key); - if (status != ERROR_SUCCESS) - return status; - - // delete device stack filter entries created by Xen pvdrivers - status = RegOpenKeyEx(HKEY_LOCAL_MACHINE, - L"SYSTEM\\CurrentControlSet\\Control\\Class\\{4d36e96a-e325-11ce-bfc1-08002be10318}", - 0, KEY_ALL_ACCESS, &key); - - if (status != ERROR_SUCCESS) - return status; - - // FIXME: don't delete the whole value, there might be some other filters besides Xen (XENFILT). - RegDeleteValue(key, L"UpperFilters"); - - status = RegCloseKey(key); - if (status != ERROR_SUCCESS) - return status; - - status = RegOpenKeyEx(HKEY_LOCAL_MACHINE, - L"SYSTEM\\CurrentControlSet\\Control\\Class\\{4d36e97d-e325-11ce-bfc1-08002be10318}", - 0, KEY_ALL_ACCESS, &key); - - if (status != ERROR_SUCCESS) - return status; - - RegDeleteValue(key, L"UpperFilters"); - - status = RegCloseKey(key); - if (status != ERROR_SUCCESS) - return status; - - // delete driver services, SC manager can't do it - status = RegOpenKeyEx(HKEY_LOCAL_MACHINE, - L"SYSTEM\\CurrentControlSet\\Services", - 0, KEY_ALL_ACCESS, &key); - - if (status != ERROR_SUCCESS) - return status; - - for (int i = 0; i < ARRAYSIZE(serviceNames); i++) - RegDeleteTree(key, serviceNames[i]); - - status = RegCloseKey(key); - if (status != ERROR_SUCCESS) - return status; - - return 0; -} diff --git a/uninstaller/version.rc b/uninstaller/version.rc deleted file mode 100644 index a4869e8..0000000 --- a/uninstaller/version.rc +++ /dev/null @@ -1,3 +0,0 @@ -#define QTW_FILEDESCRIPTION_STR "Qubes Windows Tools uninstaller" - -#include "..\version_common.rc" diff --git a/version b/version index 1454f6e..ee74734 100644 --- a/version +++ b/version @@ -1 +1 @@ -4.0.1 +4.1.0 diff --git a/version_common.rc b/version_common.rc deleted file mode 100644 index 928a393..0000000 --- a/version_common.rc +++ /dev/null @@ -1,49 +0,0 @@ -#include -#ifdef RC_INVOKED - -// version.h is generated during build by set_version.ps1 -// it defines version macros -#include "version.h" - -// QTW_FILETYPE defaults to VFT_APP - -#if defined(DBG) || defined(DEBUG) || defined(_DEBUG) -#define VER_DBG VS_FF_DEBUG -#else -#define VER_DBG 0 -#endif - -#ifndef QTW_FILETYPE -#define QTW_FILETYPE VFT_APP -#endif - -VS_VERSION_INFO VERSIONINFO -FILEVERSION QTW_FILEVERSION -PRODUCTVERSION QTW_PRODUCTVERSION -FILEFLAGSMASK VS_FFI_FILEFLAGSMASK -FILEFLAGS VER_DBG -FILEOS VOS_NT -FILETYPE QTW_FILETYPE -#ifdef QTW_FILESUBTYPE -FILESUBTYPE QTW_FILESUBTYPE -#endif - -BEGIN - BLOCK "StringFileInfo" - BEGIN - BLOCK "000004B0" // LANG_NEUTRAL/SUBLANG_NEUTRAL, Unicode CP - BEGIN - VALUE "FileVersion", QTW_FILEVERSION_STR - VALUE "ProductVersion", QTW_PRODUCTVERSION_STR - VALUE "FileDescription", QTW_FILEDESCRIPTION_STR - VALUE "ProductName", "Qubes Tools for Windows" - VALUE "CompanyName", "Invisible Things Lab" - VALUE "LegalCopyright", "(C) Invisible Things Lab" - END - END - BLOCK "VarFileInfo" - BEGIN - VALUE "Translation", 0x0000, 0x04B0 - END -END -#endif diff --git a/vs2017/installer-qubes-os-windows-tools.sln b/vs2017/installer-qubes-os-windows-tools.sln deleted file mode 100644 index 7d0cbdf..0000000 --- a/vs2017/installer-qubes-os-windows-tools.sln +++ /dev/null @@ -1,28 +0,0 @@ - -Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio 15 -VisualStudioVersion = 15.0.27703.2035 -MinimumVisualStudioVersion = 10.0.40219.1 -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "uninstaller", "uninstaller\uninstaller.vcxproj", "{3C54C2D4-3F7B-4500-8CF0-FAF97388B747}" -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|Win32 = Debug|Win32 - Debug|x64 = Debug|x64 - Release|Win32 = Release|Win32 - Release|x64 = Release|x64 - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {3C54C2D4-3F7B-4500-8CF0-FAF97388B747}.Debug|Win32.ActiveCfg = Debug|Win32 - {3C54C2D4-3F7B-4500-8CF0-FAF97388B747}.Debug|Win32.Build.0 = Debug|Win32 - {3C54C2D4-3F7B-4500-8CF0-FAF97388B747}.Debug|x64.ActiveCfg = Debug|x64 - {3C54C2D4-3F7B-4500-8CF0-FAF97388B747}.Debug|x64.Build.0 = Debug|x64 - {3C54C2D4-3F7B-4500-8CF0-FAF97388B747}.Release|Win32.ActiveCfg = Release|Win32 - {3C54C2D4-3F7B-4500-8CF0-FAF97388B747}.Release|Win32.Build.0 = Release|Win32 - {3C54C2D4-3F7B-4500-8CF0-FAF97388B747}.Release|x64.ActiveCfg = Release|x64 - {3C54C2D4-3F7B-4500-8CF0-FAF97388B747}.Release|x64.Build.0 = Release|x64 - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection -EndGlobal diff --git a/vs2017/uninstaller/uninstaller.vcxproj b/vs2017/uninstaller/uninstaller.vcxproj deleted file mode 100644 index dff38db..0000000 --- a/vs2017/uninstaller/uninstaller.vcxproj +++ /dev/null @@ -1,215 +0,0 @@ - - - - - Debug - Win32 - - - Debug - x64 - - - Release - Win32 - - - Release - x64 - - - - {3C54C2D4-3F7B-4500-8CF0-FAF97388B747} - Win32Proj - uninstaller - $([Microsoft.Build.Utilities.ToolLocationHelper]::GetLatestSDKTargetPlatformVersion('Windows', '10.0')) - - - - Application - true - v141 - Unicode - - - Application - true - v141 - Unicode - - - Application - false - v141 - true - Unicode - - - Application - false - v141 - true - Unicode - - - - - - - - - - - - - - - - - - - true - ..\$(ConfigurationName)\$(Platform)\ - ..\$(ProjectName)\$(ConfigurationName)\$(Platform)\ - - - true - ..\$(ConfigurationName)\$(Platform)\ - ..\$(ProjectName)\$(ConfigurationName)\$(Platform)\ - - - false - ..\$(ConfigurationName)\$(Platform)\ - ..\$(ProjectName)\$(ConfigurationName)\$(Platform)\ - - - false - ..\$(ConfigurationName)\$(Platform)\ - ..\$(ProjectName)\$(ConfigurationName)\$(Platform)\ - - - - - - Level3 - Disabled - WIN32;_DEBUG;_CONSOLE;_LIB;%(PreprocessorDefinitions) - true - - - Console - true - - - xcopy /y $(TargetPath) $(SolutionDir)\..\bin\$(PlatformTarget)\ -xcopy /y $(TargetDir)$(TargetName).pdb $(SolutionDir)\..\bin\$(PlatformTarget)\ - - - Copying output files - - - $(SolutionDir)\..\bin\$(PlatformTarget)$(TargetFileName);$(SolutionDir)\..\bin\$(PlatformTarget)$(TargetName).pdb;%(Outputs) - - - $(TargetPath);$(TargetDir)$(TargetName).pdb; - - - - - - - Level3 - Disabled - WIN32;_DEBUG;_CONSOLE;_LIB;%(PreprocessorDefinitions) - true - - - Console - true - - - xcopy /y $(TargetPath) $(SolutionDir)\..\bin\$(PlatformTarget)\ -xcopy /y $(TargetDir)$(TargetName).pdb $(SolutionDir)\..\bin\$(PlatformTarget)\ - - - Copying output files - - - $(SolutionDir)\..\bin\$(PlatformTarget)$(TargetFileName);$(SolutionDir)\..\bin\$(PlatformTarget)$(TargetName).pdb;%(Outputs) - - - $(TargetPath);$(TargetDir)$(TargetName).pdb; - - - - - Level3 - - - MaxSpeed - true - true - WIN32;NDEBUG;_CONSOLE;_LIB;%(PreprocessorDefinitions) - true - - - Console - true - true - true - - - xcopy /y $(TargetPath) $(SolutionDir)\..\bin\$(PlatformTarget)\ -xcopy /y $(TargetDir)$(TargetName).pdb $(SolutionDir)\..\bin\$(PlatformTarget)\ - - - Copying output files - - - $(SolutionDir)\..\bin\$(PlatformTarget)$(TargetFileName);$(SolutionDir)\..\bin\$(PlatformTarget)$(TargetName).pdb;%(Outputs) - - - $(TargetPath);$(TargetDir)$(TargetName).pdb; - - - - - Level3 - - - MaxSpeed - true - true - WIN32;NDEBUG;_CONSOLE;_LIB;%(PreprocessorDefinitions) - true - - - Console - true - true - true - - - xcopy /y $(TargetPath) $(SolutionDir)\..\bin\$(PlatformTarget)\ -xcopy /y $(TargetDir)$(TargetName).pdb $(SolutionDir)\..\bin\$(PlatformTarget)\ - - - Copying output files - - - $(SolutionDir)\..\bin\$(PlatformTarget)$(TargetFileName);$(SolutionDir)\..\bin\$(PlatformTarget)$(TargetName).pdb;%(Outputs) - - - $(TargetPath);$(TargetDir)$(TargetName).pdb; - - - - - - - - - - - - diff --git a/vs2017/uninstaller/uninstaller.vcxproj.filters b/vs2017/uninstaller/uninstaller.vcxproj.filters deleted file mode 100644 index bcc46f3..0000000 --- a/vs2017/uninstaller/uninstaller.vcxproj.filters +++ /dev/null @@ -1,27 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hh;hpp;hxx;hm;inl;inc;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms - - - - - Source Files - - - - - Resource Files - - - \ No newline at end of file From f69460a36c411e9d20d93a1e2f4a63c325173148 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafa=C5=82=20Wojdy=C5=82a?= Date: Thu, 4 Jan 2024 18:31:37 +0100 Subject: [PATCH 02/74] Add submodules and complete VS solution MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Rafał Wojdyła --- .gitmodules | 24 + build.cmd | 48 ++ qubes-core-agent-windows | 1 + qubes-core-qubesdb | 1 + qubes-core-vchan-xen | 1 + qubes-gui-agent-windows | 1 + qubes-gui-common | 1 + qubes-vmm-xen-windows-pvdrivers | 2 +- qubes-windows-utils | 1 + vs2022/.gitignore | 2 + vs2022/dirs.props | 19 + vs2022/windows-tools-installer.sln | 346 ++++++++++ .../windows-tools-installer.vdproj | 649 ++++++++++++++++++ 13 files changed, 1095 insertions(+), 1 deletion(-) create mode 100644 build.cmd create mode 160000 qubes-core-agent-windows create mode 160000 qubes-core-qubesdb create mode 160000 qubes-core-vchan-xen create mode 160000 qubes-gui-agent-windows create mode 160000 qubes-gui-common create mode 160000 qubes-windows-utils create mode 100644 vs2022/.gitignore create mode 100644 vs2022/dirs.props create mode 100644 vs2022/windows-tools-installer.sln create mode 100644 vs2022/windows-tools-installer/windows-tools-installer.vdproj diff --git a/.gitmodules b/.gitmodules index bf30cac..5a290e3 100644 --- a/.gitmodules +++ b/.gitmodules @@ -2,3 +2,27 @@ path = qubes-vmm-xen-windows-pvdrivers url = https://github.com/omeg/qubes-vmm-xen-windows-pvdrivers branch = omeg/win10 +[submodule "qubes-core-vchan-xen"] + path = qubes-core-vchan-xen + url = https://github.com/omeg/qubes-core-vchan-xen.git + branch = omeg/win10 +[submodule "qubes-core-agent-windows"] + path = qubes-core-agent-windows + url = https://github.com/omeg/qubes-core-agent-windows.git + branch = omeg/win10 +[submodule "qubes-core-qubesdb"] + path = qubes-core-qubesdb + url = https://github.com/omeg/qubes-core-qubesdb.git + branch = omeg/win10 +[submodule "qubes-gui-agent-windows"] + path = qubes-gui-agent-windows + url = https://github.com/omeg/qubes-gui-agent-windows.git + branch = omeg/win10 +[submodule "qubes-gui-common"] + path = qubes-gui-common + url = https://github.com/omeg/qubes-gui-common.git + branch = omeg/win10 +[submodule "qubes-windows-utils"] + path = qubes-windows-utils + url = https://github.com/omeg/qubes-windows-utils.git + branch = omeg/win10 diff --git a/build.cmd b/build.cmd new file mode 100644 index 0000000..8f954a0 --- /dev/null +++ b/build.cmd @@ -0,0 +1,48 @@ +@echo off +setlocal enableextensions + +set SOLUTION="%~dp0\vs2022\windows-tools-installer.sln" + +if "%1" == "" ( + echo Usage: %0 Release^|Debug + exit /b 1 +) + +set CONFIGURATION=%1 + +if not defined EWDK_PATH ( + echo EWDK_PATH not defined + exit /b 1 +) + +:: strip quotes +set EWDK_PATH=%EWDK_PATH:"=% + +set VS="%EWDK_PATH%\Program Files\Microsoft Visual Studio\2022\BuildTools" +if not exist %VS% ( + echo Can't find Visual Studio in %VS% + exit /b 1 +) + +set VS=%VS:"=% + +set MSBUILD_ROOT="%vs%\MSBuild" +set MSBUILD_ROOT=%MSBUILD_ROOT:"=% + +set MSBUILD="%MSBUILD_ROOT%\Current\Bin\MSBuild.exe" + +if not exist %MSBUILD% ( + echo Can't find MSBuild in %MSBUILD% + exit /b 1 +) + +:: needed for building without normal visual studio +call "%EWDK_PATH%\BuildEnv\SetupBuildEnv.cmd" x86_amd64 + +set EWDK_INCLUDE="%EWDK_PATH%\Program Files\Windows Kits\10\Include\%Version_Number%\shared;%EWDK_PATH%\Program Files\Windows Kits\10\Include\%Version_Number%\um;%EWDK_PATH%\Program Files\Windows Kits\10\Include\%Version_Number%\ucrt" +set EWDK_INCLUDE=%EWDK_INCLUDE:"=% + +set EWDK_LIB="%EWDK_PATH%\Program Files\Windows Kits\10\Lib\%Version_Number%\um\x64;%EWDK_PATH%\Program Files\Windows Kits\10\Lib\%Version_Number%\ucrt\x64" +set EWDK_LIB=%EWDK_LIB:"=% + +%MSBUILD% %SOLUTION% -t:Rebuild -p:Platform=x64 -p:Configuration=%CONFIGURATION% diff --git a/qubes-core-agent-windows b/qubes-core-agent-windows new file mode 160000 index 0000000..d9da26d --- /dev/null +++ b/qubes-core-agent-windows @@ -0,0 +1 @@ +Subproject commit d9da26de01c8892f6e1b442ae770da8edcc84c67 diff --git a/qubes-core-qubesdb b/qubes-core-qubesdb new file mode 160000 index 0000000..f5651f8 --- /dev/null +++ b/qubes-core-qubesdb @@ -0,0 +1 @@ +Subproject commit f5651f8fe5348ce1b4b21bdafdae1f32b2af9d53 diff --git a/qubes-core-vchan-xen b/qubes-core-vchan-xen new file mode 160000 index 0000000..5bb6398 --- /dev/null +++ b/qubes-core-vchan-xen @@ -0,0 +1 @@ +Subproject commit 5bb63981d45864ee0d639f8cbea8b847d997fb5e diff --git a/qubes-gui-agent-windows b/qubes-gui-agent-windows new file mode 160000 index 0000000..9dd6b5c --- /dev/null +++ b/qubes-gui-agent-windows @@ -0,0 +1 @@ +Subproject commit 9dd6b5cc20e160321f4024cb035d8be8f82afcda diff --git a/qubes-gui-common b/qubes-gui-common new file mode 160000 index 0000000..744b41b --- /dev/null +++ b/qubes-gui-common @@ -0,0 +1 @@ +Subproject commit 744b41b243e5df834a83f6de80af8e0ec4f08b75 diff --git a/qubes-vmm-xen-windows-pvdrivers b/qubes-vmm-xen-windows-pvdrivers index 2d5b230..05d4de2 160000 --- a/qubes-vmm-xen-windows-pvdrivers +++ b/qubes-vmm-xen-windows-pvdrivers @@ -1 +1 @@ -Subproject commit 2d5b230f6ead75c8380b81aca431282c95f916d6 +Subproject commit 05d4de2f9ec989d3d45d7af7a82ab997bb524e5b diff --git a/qubes-windows-utils b/qubes-windows-utils new file mode 160000 index 0000000..42c4463 --- /dev/null +++ b/qubes-windows-utils @@ -0,0 +1 @@ +Subproject commit 42c44636e56da8b12a778e865151d8d62ec5a1d3 diff --git a/vs2022/.gitignore b/vs2022/.gitignore new file mode 100644 index 0000000..f70c9f0 --- /dev/null +++ b/vs2022/.gitignore @@ -0,0 +1,2 @@ +/tmp/ +/x64/ diff --git a/vs2022/dirs.props b/vs2022/dirs.props new file mode 100644 index 0000000..1680db9 --- /dev/null +++ b/vs2022/dirs.props @@ -0,0 +1,19 @@ + + + + + + $(SolutionDir)\..\qubes-vmm-xen-windows-pvdrivers\include;$(SolutionDir)\..\qubes-vmm-xen-windows-pvdrivers\xeniface\include;$(SolutionDir)\..\qubes-core-vchan-xen\windows\include;$(SolutionDir)\..\qubes-windows-utils\include;$(SolutionDir)\..\qubes-core-qubesdb\include;$(SolutionDir)\..\qubes-gui-common\include + $(SolutionDir)\..\bin;$(SolutionDir)\..\bin\xeniface + + + + + + $(QUBES_INCLUDES) + + + $(QUBES_LIBS) + + + \ No newline at end of file diff --git a/vs2022/windows-tools-installer.sln b/vs2022/windows-tools-installer.sln new file mode 100644 index 0000000..764c59b --- /dev/null +++ b/vs2022/windows-tools-installer.sln @@ -0,0 +1,346 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.6.33723.286 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{54435603-DBB4-11D2-8724-00A0C9A8B90C}") = "windows-tools-installer", "windows-tools-installer\windows-tools-installer.vdproj", "{1BEE28E8-F831-4B2A-B838-87EF43CC0007}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "pvdrivers", "..\qubes-vmm-xen-windows-pvdrivers\vs2022\pvdrivers\pvdrivers.vcxproj", "{27332887-9FFF-420E-8052-AB7E1AAF4D2C}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libxenvchan", "..\qubes-vmm-xen-windows-pvdrivers\vs2022\libxenvchan\libxenvchan.vcxproj", "{E7BBCAC2-43D8-4C8F-AC60-4D6FE7D6017E}" + ProjectSection(ProjectDependencies) = postProject + {27332887-9FFF-420E-8052-AB7E1AAF4D2C} = {27332887-9FFF-420E-8052-AB7E1AAF4D2C} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libvchan", "..\qubes-core-vchan-xen\windows\vs2022\libvchan\libvchan.vcxproj", "{D97E5DD6-FE7C-403A-8B4B-5EF885CB6409}" + ProjectSection(ProjectDependencies) = postProject + {27332887-9FFF-420E-8052-AB7E1AAF4D2C} = {27332887-9FFF-420E-8052-AB7E1AAF4D2C} + {E7BBCAC2-43D8-4C8F-AC60-4D6FE7D6017E} = {E7BBCAC2-43D8-4C8F-AC60-4D6FE7D6017E} + EndProjectSection +EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "shared properties", "shared properties", "{7856F9E3-DA50-4014-A884-D2EB38357F68}" + ProjectSection(SolutionItems) = preProject + dirs.props = dirs.props + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "qubesdb-daemon", "..\qubes-core-qubesdb\windows\vs2022\qubesdb-daemon\qubesdb-daemon.vcxproj", "{180009C7-1323-4ACF-A4D4-E746B6638A7E}" + ProjectSection(ProjectDependencies) = postProject + {90576B86-FCFD-460C-BB3E-A1224FD4DE88} = {90576B86-FCFD-460C-BB3E-A1224FD4DE88} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "windows-utils", "..\qubes-windows-utils\vs2022\windows-utils\windows-utils.vcxproj", "{90576B86-FCFD-460C-BB3E-A1224FD4DE88}" + ProjectSection(ProjectDependencies) = postProject + {D97E5DD6-FE7C-403A-8B4B-5EF885CB6409} = {D97E5DD6-FE7C-403A-8B4B-5EF885CB6409} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "qubesdb-client", "..\qubes-core-qubesdb\windows\vs2022\qubesdb-client\qubesdb-client.vcxproj", "{E9DAF906-E07C-4A96-ADCF-611BCC624105}" + ProjectSection(ProjectDependencies) = postProject + {180009C7-1323-4ACF-A4D4-E746B6638A7E} = {180009C7-1323-4ACF-A4D4-E746B6638A7E} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "qubesdb-cmd", "..\qubes-core-qubesdb\windows\vs2022\qubesdb-cmd\qubesdb-cmd.vcxproj", "{23A8347F-28A3-4BCD-9D63-77B6A58D78B5}" + ProjectSection(ProjectDependencies) = postProject + {180009C7-1323-4ACF-A4D4-E746B6638A7E} = {180009C7-1323-4ACF-A4D4-E746B6638A7E} + {E9DAF906-E07C-4A96-ADCF-611BCC624105} = {E9DAF906-E07C-4A96-ADCF-611BCC624105} + EndProjectSection +EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "qubesdb", "qubesdb", "{CEB8918D-FEF5-4491-9B3B-DFFEB1B143A7}" +EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "xen-pvdrivers", "xen-pvdrivers", "{02976611-88E7-4AEE-8C95-AA839A2A4F56}" +EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "qrexec", "qrexec", "{65EE1322-30C4-4CB9-9DD7-B65962363BD7}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "qrexec-agent", "..\qubes-core-agent-windows\vs2022\qrexec-agent\qrexec-agent.vcxproj", "{C5293A35-58E1-4BCB-8BC7-8D0BE9503D97}" + ProjectSection(ProjectDependencies) = postProject + {90576B86-FCFD-460C-BB3E-A1224FD4DE88} = {90576B86-FCFD-460C-BB3E-A1224FD4DE88} + {D97E5DD6-FE7C-403A-8B4B-5EF885CB6409} = {D97E5DD6-FE7C-403A-8B4B-5EF885CB6409} + {E9DAF906-E07C-4A96-ADCF-611BCC624105} = {E9DAF906-E07C-4A96-ADCF-611BCC624105} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "qrexec-client-vm", "..\qubes-core-agent-windows\vs2022\qrexec-client-vm\qrexec-client-vm.vcxproj", "{CCBBEACD-F536-41E4-A10F-87E6271723E0}" + ProjectSection(ProjectDependencies) = postProject + {90576B86-FCFD-460C-BB3E-A1224FD4DE88} = {90576B86-FCFD-460C-BB3E-A1224FD4DE88} + {C5293A35-58E1-4BCB-8BC7-8D0BE9503D97} = {C5293A35-58E1-4BCB-8BC7-8D0BE9503D97} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "qrexec-wrapper", "..\qubes-core-agent-windows\vs2022\qrexec-wrapper\qrexec-wrapper.vcxproj", "{AC3F4370-1B6A-4F11-8860-D932ECBDEED9}" + ProjectSection(ProjectDependencies) = postProject + {90576B86-FCFD-460C-BB3E-A1224FD4DE88} = {90576B86-FCFD-460C-BB3E-A1224FD4DE88} + {C5293A35-58E1-4BCB-8BC7-8D0BE9503D97} = {C5293A35-58E1-4BCB-8BC7-8D0BE9503D97} + {D97E5DD6-FE7C-403A-8B4B-5EF885CB6409} = {D97E5DD6-FE7C-403A-8B4B-5EF885CB6409} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "advertise-tools", "..\qubes-core-agent-windows\vs2022\advertise-tools\advertise-tools.vcxproj", "{2370A07A-AEEB-4375-9E61-A986607D986A}" + ProjectSection(ProjectDependencies) = postProject + {90576B86-FCFD-460C-BB3E-A1224FD4DE88} = {90576B86-FCFD-460C-BB3E-A1224FD4DE88} + {C5293A35-58E1-4BCB-8BC7-8D0BE9503D97} = {C5293A35-58E1-4BCB-8BC7-8D0BE9503D97} + {E9DAF906-E07C-4A96-ADCF-611BCC624105} = {E9DAF906-E07C-4A96-ADCF-611BCC624105} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ask-vm-and-run", "..\qubes-core-agent-windows\vs2022\ask-vm-and-run\ask-vm-and-run.vcxproj", "{7A56571F-5D48-4A43-AB74-1B5187D1296A}" + ProjectSection(ProjectDependencies) = postProject + {90576B86-FCFD-460C-BB3E-A1224FD4DE88} = {90576B86-FCFD-460C-BB3E-A1224FD4DE88} + {C5293A35-58E1-4BCB-8BC7-8D0BE9503D97} = {C5293A35-58E1-4BCB-8BC7-8D0BE9503D97} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "network-setup", "..\qubes-core-agent-windows\vs2022\network-setup\network-setup.vcxproj", "{5D0859E7-D37C-4A31-B671-75093351474D}" + ProjectSection(ProjectDependencies) = postProject + {90576B86-FCFD-460C-BB3E-A1224FD4DE88} = {90576B86-FCFD-460C-BB3E-A1224FD4DE88} + {C5293A35-58E1-4BCB-8BC7-8D0BE9503D97} = {C5293A35-58E1-4BCB-8BC7-8D0BE9503D97} + {E9DAF906-E07C-4A96-ADCF-611BCC624105} = {E9DAF906-E07C-4A96-ADCF-611BCC624105} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "prepare-volume", "..\qubes-core-agent-windows\vs2022\prepare-volume\prepare-volume.vcxproj", "{2D0C1455-C66A-4FFB-8584-67A9265FFE9A}" + ProjectSection(ProjectDependencies) = postProject + {90576B86-FCFD-460C-BB3E-A1224FD4DE88} = {90576B86-FCFD-460C-BB3E-A1224FD4DE88} + {C5293A35-58E1-4BCB-8BC7-8D0BE9503D97} = {C5293A35-58E1-4BCB-8BC7-8D0BE9503D97} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "relocate-dir", "..\qubes-core-agent-windows\vs2022\relocate-dir\relocate-dir.vcxproj", "{FA1DE025-C52D-4088-A52C-4E298B445256}" + ProjectSection(ProjectDependencies) = postProject + {C5293A35-58E1-4BCB-8BC7-8D0BE9503D97} = {C5293A35-58E1-4BCB-8BC7-8D0BE9503D97} + EndProjectSection +EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "services", "services", "{011435C7-D648-4B59-B0B0-C1553823AE62}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "clipboard-copy", "..\qubes-core-agent-windows\vs2022\qubes-rpc-services\clipboard-copy\clipboard-copy.vcxproj", "{DBA888E0-F486-41C5-AF4D-B4FD04330082}" + ProjectSection(ProjectDependencies) = postProject + {90576B86-FCFD-460C-BB3E-A1224FD4DE88} = {90576B86-FCFD-460C-BB3E-A1224FD4DE88} + {C5293A35-58E1-4BCB-8BC7-8D0BE9503D97} = {C5293A35-58E1-4BCB-8BC7-8D0BE9503D97} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "clipboard-paste", "..\qubes-core-agent-windows\vs2022\qubes-rpc-services\clipboard-paste\clipboard-paste.vcxproj", "{0EE088EA-130B-4715-842E-9F6FB8409288}" + ProjectSection(ProjectDependencies) = postProject + {90576B86-FCFD-460C-BB3E-A1224FD4DE88} = {90576B86-FCFD-460C-BB3E-A1224FD4DE88} + {C5293A35-58E1-4BCB-8BC7-8D0BE9503D97} = {C5293A35-58E1-4BCB-8BC7-8D0BE9503D97} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "file-receiver", "..\qubes-core-agent-windows\vs2022\qubes-rpc-services\file-receiver\file-receiver.vcxproj", "{F43D0469-AAF0-4278-A39A-80063D679DA0}" + ProjectSection(ProjectDependencies) = postProject + {90576B86-FCFD-460C-BB3E-A1224FD4DE88} = {90576B86-FCFD-460C-BB3E-A1224FD4DE88} + {C5293A35-58E1-4BCB-8BC7-8D0BE9503D97} = {C5293A35-58E1-4BCB-8BC7-8D0BE9503D97} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "file-sender", "..\qubes-core-agent-windows\vs2022\qubes-rpc-services\file-sender\file-sender.vcxproj", "{7AFF0AAD-4FBE-4FF2-AA98-1984A944F343}" + ProjectSection(ProjectDependencies) = postProject + {90576B86-FCFD-460C-BB3E-A1224FD4DE88} = {90576B86-FCFD-460C-BB3E-A1224FD4DE88} + {C5293A35-58E1-4BCB-8BC7-8D0BE9503D97} = {C5293A35-58E1-4BCB-8BC7-8D0BE9503D97} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "get-image-rgba", "..\qubes-core-agent-windows\vs2022\qubes-rpc-services\get-image-rgba\get-image-rgba.vcxproj", "{AD828571-1DD7-45FD-B5C2-907DE485F39B}" + ProjectSection(ProjectDependencies) = postProject + {90576B86-FCFD-460C-BB3E-A1224FD4DE88} = {90576B86-FCFD-460C-BB3E-A1224FD4DE88} + {C5293A35-58E1-4BCB-8BC7-8D0BE9503D97} = {C5293A35-58E1-4BCB-8BC7-8D0BE9503D97} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "open-in-vm", "..\qubes-core-agent-windows\vs2022\qubes-rpc-services\open-in-vm\open-in-vm.vcxproj", "{13FBD724-6908-4ABB-AB6D-0EC76B732DF4}" + ProjectSection(ProjectDependencies) = postProject + {90576B86-FCFD-460C-BB3E-A1224FD4DE88} = {90576B86-FCFD-460C-BB3E-A1224FD4DE88} + {C5293A35-58E1-4BCB-8BC7-8D0BE9503D97} = {C5293A35-58E1-4BCB-8BC7-8D0BE9503D97} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "open-url", "..\qubes-core-agent-windows\vs2022\qubes-rpc-services\open-url\open-url.vcxproj", "{F5240B13-827B-42C9-9A9B-C2435648BB43}" + ProjectSection(ProjectDependencies) = postProject + {90576B86-FCFD-460C-BB3E-A1224FD4DE88} = {90576B86-FCFD-460C-BB3E-A1224FD4DE88} + {C5293A35-58E1-4BCB-8BC7-8D0BE9503D97} = {C5293A35-58E1-4BCB-8BC7-8D0BE9503D97} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "set-gui-mode", "..\qubes-core-agent-windows\vs2022\qubes-rpc-services\set-gui-mode\set-gui-mode.vcxproj", "{9556A5D1-B82A-47BC-8050-A116EE418530}" + ProjectSection(ProjectDependencies) = postProject + {90576B86-FCFD-460C-BB3E-A1224FD4DE88} = {90576B86-FCFD-460C-BB3E-A1224FD4DE88} + {C5293A35-58E1-4BCB-8BC7-8D0BE9503D97} = {C5293A35-58E1-4BCB-8BC7-8D0BE9503D97} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "vm-file-editor", "..\qubes-core-agent-windows\vs2022\qubes-rpc-services\vm-file-editor\vm-file-editor.vcxproj", "{4A83998D-0C62-4A6E-98AC-7C7E009A6693}" + ProjectSection(ProjectDependencies) = postProject + {90576B86-FCFD-460C-BB3E-A1224FD4DE88} = {90576B86-FCFD-460C-BB3E-A1224FD4DE88} + {C5293A35-58E1-4BCB-8BC7-8D0BE9503D97} = {C5293A35-58E1-4BCB-8BC7-8D0BE9503D97} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "wait-for-logon", "..\qubes-core-agent-windows\vs2022\qubes-rpc-services\wait-for-logon\wait-for-logon.vcxproj", "{AF84F8F2-E5B4-41DD-BED5-5B19D96F0A02}" + ProjectSection(ProjectDependencies) = postProject + {90576B86-FCFD-460C-BB3E-A1224FD4DE88} = {90576B86-FCFD-460C-BB3E-A1224FD4DE88} + {C5293A35-58E1-4BCB-8BC7-8D0BE9503D97} = {C5293A35-58E1-4BCB-8BC7-8D0BE9503D97} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "window-icon-updater", "..\qubes-core-agent-windows\vs2022\qubes-rpc-services\window-icon-updater\window-icon-updater.vcxproj", "{F7A9C9CD-BCD2-45F7-A241-414429B81A9D}" + ProjectSection(ProjectDependencies) = postProject + {90576B86-FCFD-460C-BB3E-A1224FD4DE88} = {90576B86-FCFD-460C-BB3E-A1224FD4DE88} + {C5293A35-58E1-4BCB-8BC7-8D0BE9503D97} = {C5293A35-58E1-4BCB-8BC7-8D0BE9503D97} + EndProjectSection +EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "gui-agent", "gui-agent", "{F63D8E0D-4CA1-4009-9A94-92E48EFD8730}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "gui-agent", "..\qubes-gui-agent-windows\vs2022\gui-agent\gui-agent.vcxproj", "{2CAD426C-FEE2-41F4-88C0-DCF14B59EA9E}" + ProjectSection(ProjectDependencies) = postProject + {27332887-9FFF-420E-8052-AB7E1AAF4D2C} = {27332887-9FFF-420E-8052-AB7E1AAF4D2C} + {90576B86-FCFD-460C-BB3E-A1224FD4DE88} = {90576B86-FCFD-460C-BB3E-A1224FD4DE88} + {D97E5DD6-FE7C-403A-8B4B-5EF885CB6409} = {D97E5DD6-FE7C-403A-8B4B-5EF885CB6409} + {E9DAF906-E07C-4A96-ADCF-611BCC624105} = {E9DAF906-E07C-4A96-ADCF-611BCC624105} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "watchdog", "..\qubes-gui-agent-windows\vs2022\watchdog\watchdog.vcxproj", "{9CA9D9C3-6989-40CF-8E22-AF09E3DE87DC}" + ProjectSection(ProjectDependencies) = postProject + {2CAD426C-FEE2-41F4-88C0-DCF14B59EA9E} = {2CAD426C-FEE2-41F4-88C0-DCF14B59EA9E} + {90576B86-FCFD-460C-BB3E-A1224FD4DE88} = {90576B86-FCFD-460C-BB3E-A1224FD4DE88} + EndProjectSection +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|x64 = Debug|x64 + Release|x64 = Release|x64 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {1BEE28E8-F831-4B2A-B838-87EF43CC0007}.Debug|x64.ActiveCfg = Debug + {1BEE28E8-F831-4B2A-B838-87EF43CC0007}.Debug|x64.Build.0 = Debug + {1BEE28E8-F831-4B2A-B838-87EF43CC0007}.Release|x64.ActiveCfg = Release + {1BEE28E8-F831-4B2A-B838-87EF43CC0007}.Release|x64.Build.0 = Release + {27332887-9FFF-420E-8052-AB7E1AAF4D2C}.Debug|x64.ActiveCfg = Debug|x64 + {27332887-9FFF-420E-8052-AB7E1AAF4D2C}.Debug|x64.Build.0 = Debug|x64 + {27332887-9FFF-420E-8052-AB7E1AAF4D2C}.Release|x64.ActiveCfg = Release|x64 + {27332887-9FFF-420E-8052-AB7E1AAF4D2C}.Release|x64.Build.0 = Release|x64 + {E7BBCAC2-43D8-4C8F-AC60-4D6FE7D6017E}.Debug|x64.ActiveCfg = Debug|x64 + {E7BBCAC2-43D8-4C8F-AC60-4D6FE7D6017E}.Debug|x64.Build.0 = Debug|x64 + {E7BBCAC2-43D8-4C8F-AC60-4D6FE7D6017E}.Release|x64.ActiveCfg = Release|x64 + {E7BBCAC2-43D8-4C8F-AC60-4D6FE7D6017E}.Release|x64.Build.0 = Release|x64 + {D97E5DD6-FE7C-403A-8B4B-5EF885CB6409}.Debug|x64.ActiveCfg = Debug|x64 + {D97E5DD6-FE7C-403A-8B4B-5EF885CB6409}.Debug|x64.Build.0 = Debug|x64 + {D97E5DD6-FE7C-403A-8B4B-5EF885CB6409}.Release|x64.ActiveCfg = Release|x64 + {D97E5DD6-FE7C-403A-8B4B-5EF885CB6409}.Release|x64.Build.0 = Release|x64 + {180009C7-1323-4ACF-A4D4-E746B6638A7E}.Debug|x64.ActiveCfg = Debug|x64 + {180009C7-1323-4ACF-A4D4-E746B6638A7E}.Debug|x64.Build.0 = Debug|x64 + {180009C7-1323-4ACF-A4D4-E746B6638A7E}.Release|x64.ActiveCfg = Release|x64 + {180009C7-1323-4ACF-A4D4-E746B6638A7E}.Release|x64.Build.0 = Release|x64 + {90576B86-FCFD-460C-BB3E-A1224FD4DE88}.Debug|x64.ActiveCfg = Debug|x64 + {90576B86-FCFD-460C-BB3E-A1224FD4DE88}.Debug|x64.Build.0 = Debug|x64 + {90576B86-FCFD-460C-BB3E-A1224FD4DE88}.Release|x64.ActiveCfg = Release|x64 + {90576B86-FCFD-460C-BB3E-A1224FD4DE88}.Release|x64.Build.0 = Release|x64 + {E9DAF906-E07C-4A96-ADCF-611BCC624105}.Debug|x64.ActiveCfg = Debug|x64 + {E9DAF906-E07C-4A96-ADCF-611BCC624105}.Debug|x64.Build.0 = Debug|x64 + {E9DAF906-E07C-4A96-ADCF-611BCC624105}.Release|x64.ActiveCfg = Release|x64 + {E9DAF906-E07C-4A96-ADCF-611BCC624105}.Release|x64.Build.0 = Release|x64 + {23A8347F-28A3-4BCD-9D63-77B6A58D78B5}.Debug|x64.ActiveCfg = Debug|x64 + {23A8347F-28A3-4BCD-9D63-77B6A58D78B5}.Debug|x64.Build.0 = Debug|x64 + {23A8347F-28A3-4BCD-9D63-77B6A58D78B5}.Release|x64.ActiveCfg = Release|x64 + {23A8347F-28A3-4BCD-9D63-77B6A58D78B5}.Release|x64.Build.0 = Release|x64 + {C5293A35-58E1-4BCB-8BC7-8D0BE9503D97}.Debug|x64.ActiveCfg = Debug|x64 + {C5293A35-58E1-4BCB-8BC7-8D0BE9503D97}.Debug|x64.Build.0 = Debug|x64 + {C5293A35-58E1-4BCB-8BC7-8D0BE9503D97}.Release|x64.ActiveCfg = Release|x64 + {C5293A35-58E1-4BCB-8BC7-8D0BE9503D97}.Release|x64.Build.0 = Release|x64 + {CCBBEACD-F536-41E4-A10F-87E6271723E0}.Debug|x64.ActiveCfg = Debug|x64 + {CCBBEACD-F536-41E4-A10F-87E6271723E0}.Debug|x64.Build.0 = Debug|x64 + {CCBBEACD-F536-41E4-A10F-87E6271723E0}.Release|x64.ActiveCfg = Release|x64 + {CCBBEACD-F536-41E4-A10F-87E6271723E0}.Release|x64.Build.0 = Release|x64 + {AC3F4370-1B6A-4F11-8860-D932ECBDEED9}.Debug|x64.ActiveCfg = Debug|x64 + {AC3F4370-1B6A-4F11-8860-D932ECBDEED9}.Debug|x64.Build.0 = Debug|x64 + {AC3F4370-1B6A-4F11-8860-D932ECBDEED9}.Release|x64.ActiveCfg = Release|x64 + {AC3F4370-1B6A-4F11-8860-D932ECBDEED9}.Release|x64.Build.0 = Release|x64 + {2370A07A-AEEB-4375-9E61-A986607D986A}.Debug|x64.ActiveCfg = Debug|x64 + {2370A07A-AEEB-4375-9E61-A986607D986A}.Debug|x64.Build.0 = Debug|x64 + {2370A07A-AEEB-4375-9E61-A986607D986A}.Release|x64.ActiveCfg = Release|x64 + {2370A07A-AEEB-4375-9E61-A986607D986A}.Release|x64.Build.0 = Release|x64 + {7A56571F-5D48-4A43-AB74-1B5187D1296A}.Debug|x64.ActiveCfg = Debug|x64 + {7A56571F-5D48-4A43-AB74-1B5187D1296A}.Debug|x64.Build.0 = Debug|x64 + {7A56571F-5D48-4A43-AB74-1B5187D1296A}.Release|x64.ActiveCfg = Release|x64 + {7A56571F-5D48-4A43-AB74-1B5187D1296A}.Release|x64.Build.0 = Release|x64 + {5D0859E7-D37C-4A31-B671-75093351474D}.Debug|x64.ActiveCfg = Debug|x64 + {5D0859E7-D37C-4A31-B671-75093351474D}.Debug|x64.Build.0 = Debug|x64 + {5D0859E7-D37C-4A31-B671-75093351474D}.Release|x64.ActiveCfg = Release|x64 + {5D0859E7-D37C-4A31-B671-75093351474D}.Release|x64.Build.0 = Release|x64 + {2D0C1455-C66A-4FFB-8584-67A9265FFE9A}.Debug|x64.ActiveCfg = Debug|x64 + {2D0C1455-C66A-4FFB-8584-67A9265FFE9A}.Debug|x64.Build.0 = Debug|x64 + {2D0C1455-C66A-4FFB-8584-67A9265FFE9A}.Release|x64.ActiveCfg = Release|x64 + {2D0C1455-C66A-4FFB-8584-67A9265FFE9A}.Release|x64.Build.0 = Release|x64 + {FA1DE025-C52D-4088-A52C-4E298B445256}.Debug|x64.ActiveCfg = Debug|x64 + {FA1DE025-C52D-4088-A52C-4E298B445256}.Debug|x64.Build.0 = Debug|x64 + {FA1DE025-C52D-4088-A52C-4E298B445256}.Release|x64.ActiveCfg = Release|x64 + {FA1DE025-C52D-4088-A52C-4E298B445256}.Release|x64.Build.0 = Release|x64 + {DBA888E0-F486-41C5-AF4D-B4FD04330082}.Debug|x64.ActiveCfg = Debug|x64 + {DBA888E0-F486-41C5-AF4D-B4FD04330082}.Debug|x64.Build.0 = Debug|x64 + {DBA888E0-F486-41C5-AF4D-B4FD04330082}.Release|x64.ActiveCfg = Release|x64 + {DBA888E0-F486-41C5-AF4D-B4FD04330082}.Release|x64.Build.0 = Release|x64 + {0EE088EA-130B-4715-842E-9F6FB8409288}.Debug|x64.ActiveCfg = Debug|x64 + {0EE088EA-130B-4715-842E-9F6FB8409288}.Debug|x64.Build.0 = Debug|x64 + {0EE088EA-130B-4715-842E-9F6FB8409288}.Release|x64.ActiveCfg = Release|x64 + {0EE088EA-130B-4715-842E-9F6FB8409288}.Release|x64.Build.0 = Release|x64 + {F43D0469-AAF0-4278-A39A-80063D679DA0}.Debug|x64.ActiveCfg = Debug|x64 + {F43D0469-AAF0-4278-A39A-80063D679DA0}.Debug|x64.Build.0 = Debug|x64 + {F43D0469-AAF0-4278-A39A-80063D679DA0}.Release|x64.ActiveCfg = Release|x64 + {F43D0469-AAF0-4278-A39A-80063D679DA0}.Release|x64.Build.0 = Release|x64 + {7AFF0AAD-4FBE-4FF2-AA98-1984A944F343}.Debug|x64.ActiveCfg = Debug|x64 + {7AFF0AAD-4FBE-4FF2-AA98-1984A944F343}.Debug|x64.Build.0 = Debug|x64 + {7AFF0AAD-4FBE-4FF2-AA98-1984A944F343}.Release|x64.ActiveCfg = Release|x64 + {7AFF0AAD-4FBE-4FF2-AA98-1984A944F343}.Release|x64.Build.0 = Release|x64 + {AD828571-1DD7-45FD-B5C2-907DE485F39B}.Debug|x64.ActiveCfg = Debug|x64 + {AD828571-1DD7-45FD-B5C2-907DE485F39B}.Debug|x64.Build.0 = Debug|x64 + {AD828571-1DD7-45FD-B5C2-907DE485F39B}.Release|x64.ActiveCfg = Release|x64 + {AD828571-1DD7-45FD-B5C2-907DE485F39B}.Release|x64.Build.0 = Release|x64 + {13FBD724-6908-4ABB-AB6D-0EC76B732DF4}.Debug|x64.ActiveCfg = Debug|x64 + {13FBD724-6908-4ABB-AB6D-0EC76B732DF4}.Debug|x64.Build.0 = Debug|x64 + {13FBD724-6908-4ABB-AB6D-0EC76B732DF4}.Release|x64.ActiveCfg = Release|x64 + {13FBD724-6908-4ABB-AB6D-0EC76B732DF4}.Release|x64.Build.0 = Release|x64 + {F5240B13-827B-42C9-9A9B-C2435648BB43}.Debug|x64.ActiveCfg = Debug|x64 + {F5240B13-827B-42C9-9A9B-C2435648BB43}.Debug|x64.Build.0 = Debug|x64 + {F5240B13-827B-42C9-9A9B-C2435648BB43}.Release|x64.ActiveCfg = Release|x64 + {F5240B13-827B-42C9-9A9B-C2435648BB43}.Release|x64.Build.0 = Release|x64 + {9556A5D1-B82A-47BC-8050-A116EE418530}.Debug|x64.ActiveCfg = Debug|x64 + {9556A5D1-B82A-47BC-8050-A116EE418530}.Debug|x64.Build.0 = Debug|x64 + {9556A5D1-B82A-47BC-8050-A116EE418530}.Release|x64.ActiveCfg = Release|x64 + {9556A5D1-B82A-47BC-8050-A116EE418530}.Release|x64.Build.0 = Release|x64 + {4A83998D-0C62-4A6E-98AC-7C7E009A6693}.Debug|x64.ActiveCfg = Debug|x64 + {4A83998D-0C62-4A6E-98AC-7C7E009A6693}.Debug|x64.Build.0 = Debug|x64 + {4A83998D-0C62-4A6E-98AC-7C7E009A6693}.Release|x64.ActiveCfg = Release|x64 + {4A83998D-0C62-4A6E-98AC-7C7E009A6693}.Release|x64.Build.0 = Release|x64 + {AF84F8F2-E5B4-41DD-BED5-5B19D96F0A02}.Debug|x64.ActiveCfg = Debug|x64 + {AF84F8F2-E5B4-41DD-BED5-5B19D96F0A02}.Debug|x64.Build.0 = Debug|x64 + {AF84F8F2-E5B4-41DD-BED5-5B19D96F0A02}.Release|x64.ActiveCfg = Release|x64 + {AF84F8F2-E5B4-41DD-BED5-5B19D96F0A02}.Release|x64.Build.0 = Release|x64 + {F7A9C9CD-BCD2-45F7-A241-414429B81A9D}.Debug|x64.ActiveCfg = Debug|x64 + {F7A9C9CD-BCD2-45F7-A241-414429B81A9D}.Debug|x64.Build.0 = Debug|x64 + {F7A9C9CD-BCD2-45F7-A241-414429B81A9D}.Release|x64.ActiveCfg = Release|x64 + {F7A9C9CD-BCD2-45F7-A241-414429B81A9D}.Release|x64.Build.0 = Release|x64 + {2CAD426C-FEE2-41F4-88C0-DCF14B59EA9E}.Debug|x64.ActiveCfg = Debug|x64 + {2CAD426C-FEE2-41F4-88C0-DCF14B59EA9E}.Debug|x64.Build.0 = Debug|x64 + {2CAD426C-FEE2-41F4-88C0-DCF14B59EA9E}.Release|x64.ActiveCfg = Release|x64 + {2CAD426C-FEE2-41F4-88C0-DCF14B59EA9E}.Release|x64.Build.0 = Release|x64 + {9CA9D9C3-6989-40CF-8E22-AF09E3DE87DC}.Debug|x64.ActiveCfg = Debug|x64 + {9CA9D9C3-6989-40CF-8E22-AF09E3DE87DC}.Debug|x64.Build.0 = Debug|x64 + {9CA9D9C3-6989-40CF-8E22-AF09E3DE87DC}.Release|x64.ActiveCfg = Release|x64 + {9CA9D9C3-6989-40CF-8E22-AF09E3DE87DC}.Release|x64.Build.0 = Release|x64 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(NestedProjects) = preSolution + {27332887-9FFF-420E-8052-AB7E1AAF4D2C} = {02976611-88E7-4AEE-8C95-AA839A2A4F56} + {E7BBCAC2-43D8-4C8F-AC60-4D6FE7D6017E} = {02976611-88E7-4AEE-8C95-AA839A2A4F56} + {180009C7-1323-4ACF-A4D4-E746B6638A7E} = {CEB8918D-FEF5-4491-9B3B-DFFEB1B143A7} + {E9DAF906-E07C-4A96-ADCF-611BCC624105} = {CEB8918D-FEF5-4491-9B3B-DFFEB1B143A7} + {23A8347F-28A3-4BCD-9D63-77B6A58D78B5} = {CEB8918D-FEF5-4491-9B3B-DFFEB1B143A7} + {C5293A35-58E1-4BCB-8BC7-8D0BE9503D97} = {65EE1322-30C4-4CB9-9DD7-B65962363BD7} + {CCBBEACD-F536-41E4-A10F-87E6271723E0} = {65EE1322-30C4-4CB9-9DD7-B65962363BD7} + {AC3F4370-1B6A-4F11-8860-D932ECBDEED9} = {65EE1322-30C4-4CB9-9DD7-B65962363BD7} + {2370A07A-AEEB-4375-9E61-A986607D986A} = {65EE1322-30C4-4CB9-9DD7-B65962363BD7} + {7A56571F-5D48-4A43-AB74-1B5187D1296A} = {65EE1322-30C4-4CB9-9DD7-B65962363BD7} + {5D0859E7-D37C-4A31-B671-75093351474D} = {65EE1322-30C4-4CB9-9DD7-B65962363BD7} + {2D0C1455-C66A-4FFB-8584-67A9265FFE9A} = {65EE1322-30C4-4CB9-9DD7-B65962363BD7} + {FA1DE025-C52D-4088-A52C-4E298B445256} = {65EE1322-30C4-4CB9-9DD7-B65962363BD7} + {011435C7-D648-4B59-B0B0-C1553823AE62} = {65EE1322-30C4-4CB9-9DD7-B65962363BD7} + {DBA888E0-F486-41C5-AF4D-B4FD04330082} = {011435C7-D648-4B59-B0B0-C1553823AE62} + {0EE088EA-130B-4715-842E-9F6FB8409288} = {011435C7-D648-4B59-B0B0-C1553823AE62} + {F43D0469-AAF0-4278-A39A-80063D679DA0} = {011435C7-D648-4B59-B0B0-C1553823AE62} + {7AFF0AAD-4FBE-4FF2-AA98-1984A944F343} = {011435C7-D648-4B59-B0B0-C1553823AE62} + {AD828571-1DD7-45FD-B5C2-907DE485F39B} = {011435C7-D648-4B59-B0B0-C1553823AE62} + {13FBD724-6908-4ABB-AB6D-0EC76B732DF4} = {011435C7-D648-4B59-B0B0-C1553823AE62} + {F5240B13-827B-42C9-9A9B-C2435648BB43} = {011435C7-D648-4B59-B0B0-C1553823AE62} + {9556A5D1-B82A-47BC-8050-A116EE418530} = {011435C7-D648-4B59-B0B0-C1553823AE62} + {4A83998D-0C62-4A6E-98AC-7C7E009A6693} = {011435C7-D648-4B59-B0B0-C1553823AE62} + {AF84F8F2-E5B4-41DD-BED5-5B19D96F0A02} = {011435C7-D648-4B59-B0B0-C1553823AE62} + {F7A9C9CD-BCD2-45F7-A241-414429B81A9D} = {011435C7-D648-4B59-B0B0-C1553823AE62} + {2CAD426C-FEE2-41F4-88C0-DCF14B59EA9E} = {F63D8E0D-4CA1-4009-9A94-92E48EFD8730} + {9CA9D9C3-6989-40CF-8E22-AF09E3DE87DC} = {F63D8E0D-4CA1-4009-9A94-92E48EFD8730} + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {DAA8D5AA-FB07-4D46-A201-1A4181E2E82C} + EndGlobalSection +EndGlobal diff --git a/vs2022/windows-tools-installer/windows-tools-installer.vdproj b/vs2022/windows-tools-installer/windows-tools-installer.vdproj new file mode 100644 index 0000000..5fc950f --- /dev/null +++ b/vs2022/windows-tools-installer/windows-tools-installer.vdproj @@ -0,0 +1,649 @@ +"DeployProject" +{ +"VSVersion" = "3:800" +"ProjectType" = "8:{978C614F-708E-4E1A-B201-565925725DBA}" +"IsWebType" = "8:FALSE" +"ProjectName" = "8:windows-tools-installer" +"LanguageId" = "3:1033" +"CodePage" = "3:1252" +"UILanguageId" = "3:1033" +"SccProjectName" = "8:" +"SccLocalPath" = "8:" +"SccAuxPath" = "8:" +"SccProvider" = "8:" + "Hierarchy" + { + } + "Configurations" + { + "Debug" + { + "DisplayName" = "8:Debug" + "IsDebugOnly" = "11:TRUE" + "IsReleaseOnly" = "11:FALSE" + "OutputFilename" = "8:Debug\\windows-tools-installer.msi" + "PackageFilesAs" = "3:2" + "PackageFileSize" = "3:-2147483648" + "CabType" = "3:1" + "Compression" = "3:2" + "SignOutput" = "11:FALSE" + "CertificateFile" = "8:" + "PrivateKeyFile" = "8:" + "TimeStampServer" = "8:" + "InstallerBootstrapper" = "3:2" + } + "Release" + { + "DisplayName" = "8:Release" + "IsDebugOnly" = "11:FALSE" + "IsReleaseOnly" = "11:TRUE" + "OutputFilename" = "8:Release\\windows-tools-installer.msi" + "PackageFilesAs" = "3:2" + "PackageFileSize" = "3:-2147483648" + "CabType" = "3:1" + "Compression" = "3:2" + "SignOutput" = "11:FALSE" + "CertificateFile" = "8:" + "PrivateKeyFile" = "8:" + "TimeStampServer" = "8:" + "InstallerBootstrapper" = "3:2" + } + } + "Deployable" + { + "CustomAction" + { + } + "DefaultFeature" + { + "Name" = "8:DefaultFeature" + "Title" = "8:" + "Description" = "8:" + } + "ExternalPersistence" + { + "LaunchCondition" + { + } + } + "File" + { + } + "FileType" + { + } + "Folder" + { + "{1525181F-901A-416C-8A58-119130FE478E}:_41F97743F02141FAA02FAABDE7AFDCBA" + { + "Name" = "8:#1916" + "AlwaysCreate" = "11:FALSE" + "Condition" = "8:" + "Transitive" = "11:FALSE" + "Property" = "8:DesktopFolder" + "Folders" + { + } + } + "{3C67513D-01DD-4637-8A68-80971EB9504F}:_DC0D5E53CA9D477F96232F8D5F52A875" + { + "DefaultLocation" = "8:[ProgramFilesFolder][Manufacturer]\\[ProductName]" + "Name" = "8:#1925" + "AlwaysCreate" = "11:FALSE" + "Condition" = "8:" + "Transitive" = "11:FALSE" + "Property" = "8:TARGETDIR" + "Folders" + { + } + } + "{1525181F-901A-416C-8A58-119130FE478E}:_E478B69FA5304022A29754D2B6EB3BBB" + { + "Name" = "8:#1919" + "AlwaysCreate" = "11:FALSE" + "Condition" = "8:" + "Transitive" = "11:FALSE" + "Property" = "8:ProgramMenuFolder" + "Folders" + { + } + } + } + "LaunchCondition" + { + } + "Locator" + { + } + "MsiBootstrapper" + { + "LangId" = "3:1033" + "RequiresElevation" = "11:FALSE" + } + "Product" + { + "Name" = "8:Microsoft Visual Studio" + "ProductName" = "8:windows-tools-installer" + "ProductCode" = "8:{6C2943DD-3C2B-4340-AD5A-45F46BF8DE98}" + "PackageCode" = "8:{0E30A6D6-2B1C-4139-837B-EB00955994D3}" + "UpgradeCode" = "8:{113EE063-34E6-4009-A61E-A83704504AB9}" + "AspNetVersion" = "8:" + "RestartWWWService" = "11:FALSE" + "RemovePreviousVersions" = "11:FALSE" + "DetectNewerInstalledVersion" = "11:TRUE" + "InstallAllUsers" = "11:FALSE" + "ProductVersion" = "8:1.0.0" + "Manufacturer" = "8:Default Company Name" + "ARPHELPTELEPHONE" = "8:" + "ARPHELPLINK" = "8:" + "Title" = "8:windows-tools-installer" + "Subject" = "8:" + "ARPCONTACT" = "8:Default Company Name" + "Keywords" = "8:" + "ARPCOMMENTS" = "8:" + "ARPURLINFOABOUT" = "8:" + "ARPPRODUCTICON" = "8:" + "ARPIconIndex" = "3:0" + "SearchPath" = "8:" + "UseSystemSearchPath" = "11:TRUE" + "TargetPlatform" = "3:0" + "PreBuildEvent" = "8:" + "PostBuildEvent" = "8:" + "RunPostBuildEvent" = "3:0" + } + "Registry" + { + "HKLM" + { + "Keys" + { + "{60EA8692-D2D5-43EB-80DC-7906BF13D6EF}:_C502E8A7F0BD4869824072BB878A8087" + { + "Name" = "8:Software" + "Condition" = "8:" + "AlwaysCreate" = "11:FALSE" + "DeleteAtUninstall" = "11:FALSE" + "Transitive" = "11:FALSE" + "Keys" + { + "{60EA8692-D2D5-43EB-80DC-7906BF13D6EF}:_B1AB40B55F244A178D4A063FC97C8721" + { + "Name" = "8:[Manufacturer]" + "Condition" = "8:" + "AlwaysCreate" = "11:FALSE" + "DeleteAtUninstall" = "11:FALSE" + "Transitive" = "11:FALSE" + "Keys" + { + } + "Values" + { + } + } + } + "Values" + { + } + } + } + } + "HKCU" + { + "Keys" + { + "{60EA8692-D2D5-43EB-80DC-7906BF13D6EF}:_FB559A2FBAF34DE7872D9D21311044D1" + { + "Name" = "8:Software" + "Condition" = "8:" + "AlwaysCreate" = "11:FALSE" + "DeleteAtUninstall" = "11:FALSE" + "Transitive" = "11:FALSE" + "Keys" + { + "{60EA8692-D2D5-43EB-80DC-7906BF13D6EF}:_EDCEB47F14724B638A8C872607C56250" + { + "Name" = "8:[Manufacturer]" + "Condition" = "8:" + "AlwaysCreate" = "11:FALSE" + "DeleteAtUninstall" = "11:FALSE" + "Transitive" = "11:FALSE" + "Keys" + { + } + "Values" + { + } + } + } + "Values" + { + } + } + } + } + "HKCR" + { + "Keys" + { + } + } + "HKU" + { + "Keys" + { + } + } + "HKPU" + { + "Keys" + { + } + } + } + "Sequences" + { + } + "Shortcut" + { + } + "UserInterface" + { + "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_05FEEE4E6FEF4F5F9FD68D527DD0A55D" + { + "Name" = "8:#1901" + "Sequence" = "3:1" + "Attributes" = "3:2" + "Dialogs" + { + "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_14F241678D094285B3DCD76C31700DC5" + { + "Sequence" = "3:100" + "DisplayName" = "8:Progress" + "UseDynamicProperties" = "11:TRUE" + "IsDependency" = "11:FALSE" + "SourcePath" = "8:\\VsdProgressDlg.wid" + "Properties" + { + "BannerBitmap" + { + "Name" = "8:BannerBitmap" + "DisplayName" = "8:#1001" + "Description" = "8:#1101" + "Type" = "3:8" + "ContextData" = "8:Bitmap" + "Attributes" = "3:4" + "Setting" = "3:1" + "UsePlugInResources" = "11:TRUE" + } + "ShowProgress" + { + "Name" = "8:ShowProgress" + "DisplayName" = "8:#1009" + "Description" = "8:#1109" + "Type" = "3:5" + "ContextData" = "8:1;True=1;False=0" + "Attributes" = "3:0" + "Setting" = "3:0" + "Value" = "3:1" + "DefaultValue" = "3:1" + "UsePlugInResources" = "11:TRUE" + } + } + } + } + } + "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_35484BDFAA114329A26EA4F118E2EDEC" + { + "Name" = "8:#1902" + "Sequence" = "3:1" + "Attributes" = "3:3" + "Dialogs" + { + "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_0F1039FD15E546B08997E6F66CB6D011" + { + "Sequence" = "3:100" + "DisplayName" = "8:Finished" + "UseDynamicProperties" = "11:TRUE" + "IsDependency" = "11:FALSE" + "SourcePath" = "8:\\VsdFinishedDlg.wid" + "Properties" + { + "BannerBitmap" + { + "Name" = "8:BannerBitmap" + "DisplayName" = "8:#1001" + "Description" = "8:#1101" + "Type" = "3:8" + "ContextData" = "8:Bitmap" + "Attributes" = "3:4" + "Setting" = "3:1" + "UsePlugInResources" = "11:TRUE" + } + "UpdateText" + { + "Name" = "8:UpdateText" + "DisplayName" = "8:#1058" + "Description" = "8:#1158" + "Type" = "3:15" + "ContextData" = "8:" + "Attributes" = "3:0" + "Setting" = "3:1" + "Value" = "8:#1258" + "DefaultValue" = "8:#1258" + "UsePlugInResources" = "11:TRUE" + } + } + } + } + } + "{2479F3F5-0309-486D-8047-8187E2CE5BA0}:_66E1D5B56CDE43C9B678FE458B3F4591" + { + "UseDynamicProperties" = "11:FALSE" + "IsDependency" = "11:FALSE" + "SourcePath" = "8:\\VsdUserInterface.wim" + } + "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_99275C86D85F49148DBD09AF72D0A3C3" + { + "Name" = "8:#1900" + "Sequence" = "3:1" + "Attributes" = "3:1" + "Dialogs" + { + "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_3A44E40D454E40BCA407F4D6040E96E2" + { + "Sequence" = "3:300" + "DisplayName" = "8:Confirm Installation" + "UseDynamicProperties" = "11:TRUE" + "IsDependency" = "11:FALSE" + "SourcePath" = "8:\\VsdConfirmDlg.wid" + "Properties" + { + "BannerBitmap" + { + "Name" = "8:BannerBitmap" + "DisplayName" = "8:#1001" + "Description" = "8:#1101" + "Type" = "3:8" + "ContextData" = "8:Bitmap" + "Attributes" = "3:4" + "Setting" = "3:1" + "UsePlugInResources" = "11:TRUE" + } + } + } + "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_3BBEC8452FB14172A6A4784158D96B1E" + { + "Sequence" = "3:100" + "DisplayName" = "8:Welcome" + "UseDynamicProperties" = "11:TRUE" + "IsDependency" = "11:FALSE" + "SourcePath" = "8:\\VsdWelcomeDlg.wid" + "Properties" + { + "BannerBitmap" + { + "Name" = "8:BannerBitmap" + "DisplayName" = "8:#1001" + "Description" = "8:#1101" + "Type" = "3:8" + "ContextData" = "8:Bitmap" + "Attributes" = "3:4" + "Setting" = "3:1" + "UsePlugInResources" = "11:TRUE" + } + "CopyrightWarning" + { + "Name" = "8:CopyrightWarning" + "DisplayName" = "8:#1002" + "Description" = "8:#1102" + "Type" = "3:3" + "ContextData" = "8:" + "Attributes" = "3:0" + "Setting" = "3:1" + "Value" = "8:#1202" + "DefaultValue" = "8:#1202" + "UsePlugInResources" = "11:TRUE" + } + "Welcome" + { + "Name" = "8:Welcome" + "DisplayName" = "8:#1003" + "Description" = "8:#1103" + "Type" = "3:3" + "ContextData" = "8:" + "Attributes" = "3:0" + "Setting" = "3:1" + "Value" = "8:#1203" + "DefaultValue" = "8:#1203" + "UsePlugInResources" = "11:TRUE" + } + } + } + "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_4D682D8E32AD4241963433903341C5C2" + { + "Sequence" = "3:200" + "DisplayName" = "8:Installation Folder" + "UseDynamicProperties" = "11:TRUE" + "IsDependency" = "11:FALSE" + "SourcePath" = "8:\\VsdFolderDlg.wid" + "Properties" + { + "BannerBitmap" + { + "Name" = "8:BannerBitmap" + "DisplayName" = "8:#1001" + "Description" = "8:#1101" + "Type" = "3:8" + "ContextData" = "8:Bitmap" + "Attributes" = "3:4" + "Setting" = "3:1" + "UsePlugInResources" = "11:TRUE" + } + "InstallAllUsersVisible" + { + "Name" = "8:InstallAllUsersVisible" + "DisplayName" = "8:#1059" + "Description" = "8:#1159" + "Type" = "3:5" + "ContextData" = "8:1;True=1;False=0" + "Attributes" = "3:0" + "Setting" = "3:0" + "Value" = "3:1" + "DefaultValue" = "3:1" + "UsePlugInResources" = "11:TRUE" + } + } + } + } + } + "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_CB25E17D40174CA7BB19F00A23EDC63D" + { + "Name" = "8:#1902" + "Sequence" = "3:2" + "Attributes" = "3:3" + "Dialogs" + { + "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_9D8C42EDE1324BD0923C434396165D1B" + { + "Sequence" = "3:100" + "DisplayName" = "8:Finished" + "UseDynamicProperties" = "11:TRUE" + "IsDependency" = "11:FALSE" + "SourcePath" = "8:\\VsdAdminFinishedDlg.wid" + "Properties" + { + "BannerBitmap" + { + "Name" = "8:BannerBitmap" + "DisplayName" = "8:#1001" + "Description" = "8:#1101" + "Type" = "3:8" + "ContextData" = "8:Bitmap" + "Attributes" = "3:4" + "Setting" = "3:1" + "UsePlugInResources" = "11:TRUE" + } + } + } + } + } + "{2479F3F5-0309-486D-8047-8187E2CE5BA0}:_EA6DE0944BF940F4BD5711452EEE1E85" + { + "UseDynamicProperties" = "11:FALSE" + "IsDependency" = "11:FALSE" + "SourcePath" = "8:\\VsdBasicDialogs.wim" + } + "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_F205B6D5300A40BEB113ABBD7B63E0E9" + { + "Name" = "8:#1901" + "Sequence" = "3:2" + "Attributes" = "3:2" + "Dialogs" + { + "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_1105067CF6B5464684521AAB85EED309" + { + "Sequence" = "3:100" + "DisplayName" = "8:Progress" + "UseDynamicProperties" = "11:TRUE" + "IsDependency" = "11:FALSE" + "SourcePath" = "8:\\VsdAdminProgressDlg.wid" + "Properties" + { + "BannerBitmap" + { + "Name" = "8:BannerBitmap" + "DisplayName" = "8:#1001" + "Description" = "8:#1101" + "Type" = "3:8" + "ContextData" = "8:Bitmap" + "Attributes" = "3:4" + "Setting" = "3:1" + "UsePlugInResources" = "11:TRUE" + } + "ShowProgress" + { + "Name" = "8:ShowProgress" + "DisplayName" = "8:#1009" + "Description" = "8:#1109" + "Type" = "3:5" + "ContextData" = "8:1;True=1;False=0" + "Attributes" = "3:0" + "Setting" = "3:0" + "Value" = "3:1" + "DefaultValue" = "3:1" + "UsePlugInResources" = "11:TRUE" + } + } + } + } + } + "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_F354894CD2CA4316969EE047FE731AF2" + { + "Name" = "8:#1900" + "Sequence" = "3:2" + "Attributes" = "3:1" + "Dialogs" + { + "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_70C591FB66EB4D35A29096FA77EB8201" + { + "Sequence" = "3:300" + "DisplayName" = "8:Confirm Installation" + "UseDynamicProperties" = "11:TRUE" + "IsDependency" = "11:FALSE" + "SourcePath" = "8:\\VsdAdminConfirmDlg.wid" + "Properties" + { + "BannerBitmap" + { + "Name" = "8:BannerBitmap" + "DisplayName" = "8:#1001" + "Description" = "8:#1101" + "Type" = "3:8" + "ContextData" = "8:Bitmap" + "Attributes" = "3:4" + "Setting" = "3:1" + "UsePlugInResources" = "11:TRUE" + } + } + } + "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_BF94922E4D8640549C5A5FC2BA630C8C" + { + "Sequence" = "3:100" + "DisplayName" = "8:Welcome" + "UseDynamicProperties" = "11:TRUE" + "IsDependency" = "11:FALSE" + "SourcePath" = "8:\\VsdAdminWelcomeDlg.wid" + "Properties" + { + "BannerBitmap" + { + "Name" = "8:BannerBitmap" + "DisplayName" = "8:#1001" + "Description" = "8:#1101" + "Type" = "3:8" + "ContextData" = "8:Bitmap" + "Attributes" = "3:4" + "Setting" = "3:1" + "UsePlugInResources" = "11:TRUE" + } + "CopyrightWarning" + { + "Name" = "8:CopyrightWarning" + "DisplayName" = "8:#1002" + "Description" = "8:#1102" + "Type" = "3:3" + "ContextData" = "8:" + "Attributes" = "3:0" + "Setting" = "3:1" + "Value" = "8:#1202" + "DefaultValue" = "8:#1202" + "UsePlugInResources" = "11:TRUE" + } + "Welcome" + { + "Name" = "8:Welcome" + "DisplayName" = "8:#1003" + "Description" = "8:#1103" + "Type" = "3:3" + "ContextData" = "8:" + "Attributes" = "3:0" + "Setting" = "3:1" + "Value" = "8:#1203" + "DefaultValue" = "8:#1203" + "UsePlugInResources" = "11:TRUE" + } + } + } + "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_D52FC979EE08465B90E7E07F3DEF76EC" + { + "Sequence" = "3:200" + "DisplayName" = "8:Installation Folder" + "UseDynamicProperties" = "11:TRUE" + "IsDependency" = "11:FALSE" + "SourcePath" = "8:\\VsdAdminFolderDlg.wid" + "Properties" + { + "BannerBitmap" + { + "Name" = "8:BannerBitmap" + "DisplayName" = "8:#1001" + "Description" = "8:#1101" + "Type" = "3:8" + "ContextData" = "8:Bitmap" + "Attributes" = "3:4" + "Setting" = "3:1" + "UsePlugInResources" = "11:TRUE" + } + } + } + } + } + } + "MergeModule" + { + } + "ProjectOutput" + { + } + } +} From 2d3c944eaafceb07d77c72ae7e36a03f696baa40 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafa=C5=82=20Wojdy=C5=82a?= Date: Thu, 4 Jan 2024 18:39:45 +0100 Subject: [PATCH 03/74] Add readme MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Rafał Wojdyła --- README.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..2a9c243 --- /dev/null +++ b/README.md @@ -0,0 +1,17 @@ +# Installer for Qubes Windows Tools + +All required components are contained as submodules. +Visual Studio solution includes relevant projects from submodules and allows building everything. + +- TODO: actual installer +- TODO: integrate with Qubes builder +- TODO: signing pvdrivers +- TODO: cmdline build of VS installer project + +## Command-line build + +`EWDK_PATH` env variable must be set to the root of MS Enterprise WDK for Windows 10/Visual Studio 2022. + +`build.cmd` script builds the solution from command line using the EWDK (no need for external VS installation). + +Usage: `build.cmd Release|Debug` From 996e45c6689264f7ee1cae38ed09a07559ae7247 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafa=C5=82=20Wojdy=C5=82a?= Date: Thu, 4 Jan 2024 19:04:17 +0100 Subject: [PATCH 04/74] Update readme MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Rafał Wojdyła --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 2a9c243..d4b5a88 100644 --- a/README.md +++ b/README.md @@ -3,6 +3,9 @@ All required components are contained as submodules. Visual Studio solution includes relevant projects from submodules and allows building everything. +`EWDK_PATH` env variable must be set to the root of MS Enterprise WDK for Windows 10/Visual Studio 2022. + +- TODO: clean build fails on pvdrivers, retry succeeds - investigate - TODO: actual installer - TODO: integrate with Qubes builder - TODO: signing pvdrivers @@ -10,8 +13,6 @@ Visual Studio solution includes relevant projects from submodules and allows bui ## Command-line build -`EWDK_PATH` env variable must be set to the root of MS Enterprise WDK for Windows 10/Visual Studio 2022. - `build.cmd` script builds the solution from command line using the EWDK (no need for external VS installation). Usage: `build.cmd Release|Debug` From 84becb4661824634bf33cce823ffaa2dc05f9103 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafa=C5=82=20Wojdy=C5=82a?= Date: Sat, 20 Jan 2024 13:49:43 +0100 Subject: [PATCH 05/74] Test-sign all binaries MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Rafał Wojdyła --- .gitignore | 1 + README.md | 4 ++-- build.cmd | 5 +++++ sign.ps1 | 46 ++++++++++++++++++++++++++++++++++++++++++++++ 4 files changed, 54 insertions(+), 2 deletions(-) create mode 100644 sign.ps1 diff --git a/.gitignore b/.gitignore index 2f2abce..d668d3c 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,4 @@ *.msi *.exe /bin/ +/testsign.cer diff --git a/README.md b/README.md index d4b5a88..d63c30d 100644 --- a/README.md +++ b/README.md @@ -8,11 +8,11 @@ Visual Studio solution includes relevant projects from submodules and allows bui - TODO: clean build fails on pvdrivers, retry succeeds - investigate - TODO: actual installer - TODO: integrate with Qubes builder -- TODO: signing pvdrivers -- TODO: cmdline build of VS installer project +- TODO: support release signing ## Command-line build `build.cmd` script builds the solution from command line using the EWDK (no need for external VS installation). +A selfsigned test certificate (`testsign.cer`) is generated and used to sign all executables, DLLs and drivers. Usage: `build.cmd Release|Debug` diff --git a/build.cmd b/build.cmd index 8f954a0..8f5d5bf 100644 --- a/build.cmd +++ b/build.cmd @@ -45,4 +45,9 @@ set EWDK_INCLUDE=%EWDK_INCLUDE:"=% set EWDK_LIB="%EWDK_PATH%\Program Files\Windows Kits\10\Lib\%Version_Number%\um\x64;%EWDK_PATH%\Program Files\Windows Kits\10\Lib\%Version_Number%\ucrt\x64" set EWDK_LIB=%EWDK_LIB:"=% +:: build everything %MSBUILD% %SOLUTION% -t:Rebuild -p:Platform=x64 -p:Configuration=%CONFIGURATION% + +:: generate a selfsigned cert and sign everything +:: TODO: support release certs +powershell "%~dp0\sign.ps1" "%~dp0\bin" diff --git a/sign.ps1 b/sign.ps1 new file mode 100644 index 0000000..ef4b4e1 --- /dev/null +++ b/sign.ps1 @@ -0,0 +1,46 @@ +# recursively sign all {*.exe | *.dll | *.sys | *.cat } files in a directory with a newly generated test certificate +# usage: $0 [directory] +# if directory is not specified, uses