-Building the XenBus Package\r
-===========================\r
-\r
-First you'll need a device driver build environment for Windows 8 or\r
-Windows 8.1.\r
-For Windows 8 this means:\r
-\r
-* Visual Studio 2012 (Professional or Ultimate)\r
-* Windows Driver Kit 8\r
-\r
-For Windows 8.1 this means:\r
-\r
-* Visual Studio 2013 (Any SKU, including Express)\r
-* Windows Driver Kit 8.1\r
-\r
-(See http://msdn.microsoft.com/en-us/windows/hardware/hh852365.aspx). You\r
-may find it useful to install VirtualCloneDrive from http://www.slysoft.com\r
-as Visual Studio is generally supplied in ISO form.\r
-\r
-Install Visual Studio first (you only need install MFC for C++) and then\r
-the WDK. Set an environment variable called VS to the base of the Visual\r
-Studio Installation (e.g. C:\Program Files\Microsoft Visual Studio 12.0) and\r
-a variable called KIT to the base of the WDK\r
-(e.g. C:\Program Files\Windows Kits\8.1). Also set an environment variable\r
-called SYMBOL\_SERVER to point at a location where driver symbols can be\r
-stored. This can be local directory e.g. C:\Symbols.\r
-\r
-Next you'll need a 3.x version of python (which you can get from\r
-http://www.python.org). Make sure python.exe is somewhere on your default\r
-path.\r
-\r
-Now fire up a Command Prompt and navigate to the base of your git repository.\r
-At the prompt type:\r
-\r
- build.py checked\r
-\r
-This will create a debug build of the driver. To create a non-debug build\r
-type:\r
-\r
- build.py free\r
-\r
-Note that Static Driver Verifier is run by default as part of the build\r
-process. This can be very time consuming. If you don't want to run the\r
-verifier then you can add the 'nosdv' keyword to the end of your command\r
-e.g.:\r
-\r
- build.py free nosdv\r
+Building the XenBus Package
+===========================
+
+First you'll need a device driver build environment for Windows 8 or
+Windows 8.1.
+For Windows 8 this means:
+
+* Visual Studio 2012 (Professional or Ultimate)
+* Windows Driver Kit 8
+
+For Windows 8.1 this means:
+
+* Visual Studio 2013 (Any SKU, including Express)
+* Windows Driver Kit 8.1
+
+(See http://msdn.microsoft.com/en-us/windows/hardware/hh852365.aspx). You
+may find it useful to install VirtualCloneDrive from http://www.slysoft.com
+as Visual Studio is generally supplied in ISO form.
+
+Install Visual Studio first (you only need install MFC for C++) and then
+the WDK. Set an environment variable called VS to the base of the Visual
+Studio Installation (e.g. C:\Program Files\Microsoft Visual Studio 12.0) and
+a variable called KIT to the base of the WDK
+(e.g. C:\Program Files\Windows Kits\8.1). Also set an environment variable
+called SYMBOL\_SERVER to point at a location where driver symbols can be
+stored. This can be local directory e.g. C:\Symbols.
+
+Next you'll need a 3.x version of python (which you can get from
+http://www.python.org). Make sure python.exe is somewhere on your default
+path.
+
+Now fire up a Command Prompt and navigate to the base of your git repository.
+At the prompt type:
+
+ build.py checked
+
+This will create a debug build of the driver. To create a non-debug build
+type:
+
+ build.py free
+
+Note that Static Driver Verifier is run by default as part of the build
+process. This can be very time consuming. If you don't want to run the
+verifier then you can add the 'nosdv' keyword to the end of your command
+e.g.:
+
+ build.py free nosdv
-/*!\r
- * \defgroup interfaces "Interfaces"\r
- * \brief This group contains all the interfaces exported by drivers in this package\r
+/*!
+ * \defgroup interfaces "Interfaces"
+ * \brief This group contains all the interfaces exported by drivers in this package
*/
\ No newline at end of file
-/*!\r
- * \mainpage XENBUS Documentation\r
- *\r
- * \ref interfaces "Interfaces"\r
+/*!
+ * \mainpage XENBUS Documentation
+ *
+ * \ref interfaces "Interfaces"
*/
\ No newline at end of file
-#!python -u\r
-\r
-import os, sys\r
-import shutil\r
-import subprocess\r
-import re\r
-\r
-def shell(command):\r
- print(command)\r
- sys.stdout.flush()\r
-\r
- pipe = os.popen(' '.join(command), 'r', 1)\r
-\r
- for line in pipe:\r
- print(line.rstrip())\r
-\r
- return pipe.close()\r
-\r
-def get_repo(url, working):\r
- shell(['git', 'clone', '--no-checkout', url, working])\r
-\r
-def get_branch(tag, working):\r
- cwd = os.getcwd()\r
- os.chdir(working)\r
- shell(['git', 'checkout', '-b', tag])\r
- os.chdir(cwd)\r
-\r
-def copy_file(working, src_dir, dst_dir, name):\r
- try:\r
- os.makedirs('include\\xen\\%s' % dst_dir)\r
- except OSError:\r
- None\r
-\r
- src = open('%s\\xen\\include\\%s\\%s' % (working, src_dir, name), 'r')\r
- dst = open('include\\xen\\%s\\%s' % (dst_dir, name), 'w', newline='\n')\r
-\r
- print(name)\r
-\r
- for line in src:\r
- line = re.sub(' unsigned long', ' ULONG_PTR', line)\r
- line = re.sub('\(unsigned long', '(ULONG_PTR', line)\r
- line = re.sub(' long', ' LONG_PTR', line)\r
- line = re.sub('\(long', '(LONG_PTR', line)\r
- dst.write(line)\r
-\r
- dst.close()\r
- src.close()\r
-\r
-if __name__ == '__main__':\r
- tag = sys.argv[1]\r
- working = sys.argv[2]\r
-\r
- get_repo('git://xenbits.xen.org/xen.git', working)\r
- get_branch(tag, working)\r
-\r
- copy_file(working, 'public', '.', 'xen.h')\r
-\r
- copy_file(working, 'public', '.', 'xen-compat.h')\r
- copy_file(working, 'public', '.', 'trace.h')\r
- copy_file(working, 'public', '.', 'memory.h')\r
- copy_file(working, 'public', '.', 'sched.h')\r
- copy_file(working, 'public', '.', 'event_channel.h')\r
- copy_file(working, 'public', '.', 'grant_table.h')\r
- copy_file(working, 'public', '.', 'version.h')\r
- copy_file(working, 'public', '.', 'features.h')\r
-\r
- copy_file(working, 'xen', '.', 'errno.h')\r
-\r
- copy_file(working, 'public\\arch-x86', 'arch-x86', 'xen.h')\r
- copy_file(working, 'public\\arch-x86', 'arch-x86', 'xen-x86_32.h')\r
- copy_file(working, 'public\\arch-x86', 'arch-x86', 'xen-x86_64.h')\r
-\r
- copy_file(working, 'public\\hvm', 'hvm', 'hvm_op.h')\r
- copy_file(working, 'public\\hvm', 'hvm', 'params.h')\r
-\r
- copy_file(working, 'public\\io', 'io', 'xs_wire.h')\r
+#!python -u
+
+import os, sys
+import shutil
+import subprocess
+import re
+
+def shell(command):
+ print(command)
+ sys.stdout.flush()
+
+ pipe = os.popen(' '.join(command), 'r', 1)
+
+ for line in pipe:
+ print(line.rstrip())
+
+ return pipe.close()
+
+def get_repo(url, working):
+ shell(['git', 'clone', '--no-checkout', url, working])
+
+def get_branch(tag, working):
+ cwd = os.getcwd()
+ os.chdir(working)
+ shell(['git', 'checkout', '-b', tag])
+ os.chdir(cwd)
+
+def copy_file(working, src_dir, dst_dir, name):
+ try:
+ os.makedirs('include\\xen\\%s' % dst_dir)
+ except OSError:
+ None
+
+ src = open('%s\\xen\\include\\%s\\%s' % (working, src_dir, name), 'r')
+ dst = open('include\\xen\\%s\\%s' % (dst_dir, name), 'w', newline='\n')
+
+ print(name)
+
+ for line in src:
+ line = re.sub(' unsigned long', ' ULONG_PTR', line)
+ line = re.sub('\(unsigned long', '(ULONG_PTR', line)
+ line = re.sub(' long', ' LONG_PTR', line)
+ line = re.sub('\(long', '(LONG_PTR', line)
+ dst.write(line)
+
+ dst.close()
+ src.close()
+
+if __name__ == '__main__':
+ tag = sys.argv[1]
+ working = sys.argv[2]
+
+ get_repo('git://xenbits.xen.org/xen.git', working)
+ get_branch(tag, working)
+
+ copy_file(working, 'public', '.', 'xen.h')
+
+ copy_file(working, 'public', '.', 'xen-compat.h')
+ copy_file(working, 'public', '.', 'trace.h')
+ copy_file(working, 'public', '.', 'memory.h')
+ copy_file(working, 'public', '.', 'sched.h')
+ copy_file(working, 'public', '.', 'event_channel.h')
+ copy_file(working, 'public', '.', 'grant_table.h')
+ copy_file(working, 'public', '.', 'version.h')
+ copy_file(working, 'public', '.', 'features.h')
+
+ copy_file(working, 'xen', '.', 'errno.h')
+
+ copy_file(working, 'public\\arch-x86', 'arch-x86', 'xen.h')
+ copy_file(working, 'public\\arch-x86', 'arch-x86', 'xen-x86_32.h')
+ copy_file(working, 'public\\arch-x86', 'arch-x86', 'xen-x86_64.h')
+
+ copy_file(working, 'public\\hvm', 'hvm', 'hvm_op.h')
+ copy_file(working, 'public\\hvm', 'hvm', 'params.h')
+
+ copy_file(working, 'public\\io', 'io', 'xs_wire.h')
-/* Copyright (c) Citrix Systems Inc.\r
- * All rights reserved.\r
- * \r
- * Redistribution and use in source and binary forms, \r
- * with or without modification, are permitted provided \r
- * that the following conditions are met:\r
- * \r
- * * Redistributions of source code must retain the above \r
- * copyright notice, this list of conditions and the \r
- * following disclaimer.\r
- * * Redistributions in binary form must reproduce the above \r
- * copyright notice, this list of conditions and the \r
- * following disclaimer in the documentation and/or other \r
- * materials provided with the distribution.\r
- * \r
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND \r
- * CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, \r
- * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF \r
- * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE \r
- * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR \r
- * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, \r
- * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, \r
- * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR \r
- * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS \r
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, \r
- * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING \r
- * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE \r
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF \r
- * SUCH DAMAGE.\r
- */\r
-\r
-#define COMPANY_NAME_STR "@COMPANY_NAME@"\r
-#define PRODUCT_NAME_STR "@PRODUCT_NAME@"\r
-\r
-#define MAJOR_VERSION @MAJOR_VERSION@\r
-#define MAJOR_VERSION_STR "@MAJOR_VERSION@"\r
-\r
-#define MINOR_VERSION @MINOR_VERSION@\r
-#define MINOR_VERSION_STR "@MINOR_VERSION@"\r
-\r
-#define MICRO_VERSION @MICRO_VERSION@\r
-#define MICRO_VERSION_STR "@MICRO_VERSION@"\r
-\r
-#define BUILD_NUMBER @BUILD_NUMBER@\r
-#define BUILD_NUMBER_STR "@BUILD_NUMBER@"\r
-\r
-#define YEAR @YEAR@\r
-#define YEAR_STR "@YEAR@"\r
-\r
-#define MONTH @MONTH@\r
-#define MONTH_STR "@MONTH@"\r
-\r
-#define DAY @DAY@\r
-#define DAY_STR "@DAY@"\r
-\r
+/* Copyright (c) Citrix Systems Inc.
+ * All rights reserved.
+ *
+ * Redistribution and use in source and binary forms,
+ * with or without modification, are permitted provided
+ * that the following conditions are met:
+ *
+ * * Redistributions of source code must retain the above
+ * copyright notice, this list of conditions and the
+ * following disclaimer.
+ * * Redistributions in binary form must reproduce the above
+ * copyright notice, this list of conditions and the
+ * following disclaimer in the documentation and/or other
+ * materials provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
+ * CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
+ * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
+ * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+ * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+ * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
+ * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
+ * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+ * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
+ * SUCH DAMAGE.
+ */
+
+#define COMPANY_NAME_STR "@COMPANY_NAME@"
+#define PRODUCT_NAME_STR "@PRODUCT_NAME@"
+
+#define MAJOR_VERSION @MAJOR_VERSION@
+#define MAJOR_VERSION_STR "@MAJOR_VERSION@"
+
+#define MINOR_VERSION @MINOR_VERSION@
+#define MINOR_VERSION_STR "@MINOR_VERSION@"
+
+#define MICRO_VERSION @MICRO_VERSION@
+#define MICRO_VERSION_STR "@MICRO_VERSION@"
+
+#define BUILD_NUMBER @BUILD_NUMBER@
+#define BUILD_NUMBER_STR "@BUILD_NUMBER@"
+
+#define YEAR @YEAR@
+#define YEAR_STR "@YEAR@"
+
+#define MONTH @MONTH@
+#define MONTH_STR "@MONTH@"
+
+#define DAY @DAY@
+#define DAY_STR "@DAY@"
-<?xml version="1.0" encoding="utf-8"?>\r
-<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">\r
- <Import Project="..\configs.props" />\r
- <PropertyGroup Label="PropertySheets">\r
- <DriverType>WDM</DriverType>\r
- <PlatformToolset>WindowsKernelModeDriver8.0</PlatformToolset>\r
- <ConfigurationType>Utility</ConfigurationType>\r
- <DriverType>Package</DriverType>\r
- <DisableFastUpToDateCheck>true</DisableFastUpToDateCheck>\r
- </PropertyGroup>\r
- <PropertyGroup Label="Globals">\r
- <Configuration>Windows Vista Debug</Configuration>\r
- <Platform Condition="'$(Platform)' == ''">Win32</Platform>\r
- <DebuggerFlavor>DbgengKernelDebugger</DebuggerFlavor>\r
- </PropertyGroup>\r
- <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />\r
- <PropertyGroup Label="Globals">\r
- <ProjectGuid>{92E5A46B-913C-45C6-B6F8-7E062D85279F}</ProjectGuid>\r
- </PropertyGroup>\r
- <Import Project="..\targets.props" />\r
- <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />\r
- <PropertyGroup>\r
- <EnableInf2cat>true</EnableInf2cat>\r
- <Inf2CatWindowsVersionList Condition="'$(Platform)'=='x64'">Vista_x64;7_x64;Server2008_x64;Server2008R2_x64;Server8_x64</Inf2CatWindowsVersionList>\r
- <Inf2CatWindowsVersionList Condition="'$(Platform)'=='Win32'">Vista_x86;7_x86;Server2008_x86;8_x86</Inf2CatWindowsVersionList>\r
- <DebuggerFlavor>DbgengKernelDebugger</DebuggerFlavor>\r
- <EnableDeployment>False</EnableDeployment>\r
- <ImportToStore>False</ImportToStore>\r
- <InstallMode>None</InstallMode>\r
- <ScriptDeviceQuery>%PathToInf%</ScriptDeviceQuery>\r
- <EnableVerifier>False</EnableVerifier>\r
- <AllDrivers>False</AllDrivers>\r
- <VerifyProjectOutput>True</VerifyProjectOutput>\r
- <VerifyDrivers />\r
- <VerifyFlags>133563</VerifyFlags>\r
- <IntDir>..\$(ProjectName)\$(ConfigurationName)\$(Platform)\</IntDir>\r
- <OutDir>..\$(ConfigurationName)\$(Platform)\</OutDir>\r
- <PackageDir>..\..\xenbus\$(DDKPlatform)</PackageDir>\r
- </PropertyGroup>\r
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Windows 7 Debug|Win32'">\r
- <CustomBuildBeforeTargets>\r
- </CustomBuildBeforeTargets>\r
- </PropertyGroup>\r
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Windows 8 Release|Win32'">\r
- <CustomBuildBeforeTargets>\r
- </CustomBuildBeforeTargets>\r
- </PropertyGroup>\r
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Windows Vista Debug|Win32'">\r
- <CustomBuildBeforeTargets>\r
- </CustomBuildBeforeTargets>\r
- </PropertyGroup>\r
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Windows Vista Release|Win32'">\r
- <CustomBuildBeforeTargets>\r
- </CustomBuildBeforeTargets>\r
- </PropertyGroup>\r
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Windows 7 Release|Win32'">\r
- <CustomBuildBeforeTargets>\r
- </CustomBuildBeforeTargets>\r
- </PropertyGroup>\r
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Windows 8 Debug|Win32'">\r
- <CustomBuildBeforeTargets>\r
- </CustomBuildBeforeTargets>\r
- </PropertyGroup>\r
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Windows 8 Release|x64'">\r
- <CustomBuildBeforeTargets>\r
- </CustomBuildBeforeTargets>\r
- </PropertyGroup>\r
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Windows Vista Debug|x64'">\r
- <CustomBuildBeforeTargets>\r
- </CustomBuildBeforeTargets>\r
- </PropertyGroup>\r
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Windows Vista Release|x64'">\r
- <CustomBuildBeforeTargets>\r
- </CustomBuildBeforeTargets>\r
- </PropertyGroup>\r
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Windows 7 Release|x64'">\r
- <CustomBuildBeforeTargets>\r
- </CustomBuildBeforeTargets>\r
- </PropertyGroup>\r
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Windows 7 Debug|x64'">\r
- <CustomBuildBeforeTargets>\r
- </CustomBuildBeforeTargets>\r
- </PropertyGroup>\r
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Windows 8 Debug|x64'">\r
- <CustomBuildBeforeTargets>\r
- </CustomBuildBeforeTargets>\r
- </PropertyGroup>\r
- <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Windows 8 Release|Win32'">\r
- <CustomBuildStep>\r
- <Command>\r
- </Command>\r
- <Inputs>\r
- </Inputs>\r
- <TreatOutputAsContent>\r
- </TreatOutputAsContent>\r
- <Outputs>\r
- </Outputs>\r
- </CustomBuildStep>\r
- </ItemDefinitionGroup>\r
- <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Windows Vista Debug|Win32'">\r
- <CustomBuildStep>\r
- <Command>\r
- </Command>\r
- <Inputs>\r
- </Inputs>\r
- <TreatOutputAsContent>\r
- </TreatOutputAsContent>\r
- <Outputs>\r
- </Outputs>\r
- </CustomBuildStep>\r
- </ItemDefinitionGroup>\r
- <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Windows Vista Release|Win32'">\r
- <CustomBuildStep>\r
- <Command>\r
- </Command>\r
- <Inputs>\r
- </Inputs>\r
- <TreatOutputAsContent>\r
- </TreatOutputAsContent>\r
- <Outputs>\r
- </Outputs>\r
- </CustomBuildStep>\r
- </ItemDefinitionGroup>\r
- <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Windows 7 Release|Win32'">\r
- <CustomBuildStep>\r
- <Command>\r
- </Command>\r
- <Inputs>\r
- </Inputs>\r
- <TreatOutputAsContent>\r
- </TreatOutputAsContent>\r
- <Outputs>\r
- </Outputs>\r
- </CustomBuildStep>\r
- </ItemDefinitionGroup>\r
- <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Windows 7 Debug|Win32'">\r
- <CustomBuildStep>\r
- <Command>\r
- </Command>\r
- <Inputs>\r
- </Inputs>\r
- <TreatOutputAsContent>\r
- </TreatOutputAsContent>\r
- <Outputs>\r
- </Outputs>\r
- </CustomBuildStep>\r
- </ItemDefinitionGroup>\r
- <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Windows 8 Debug|Win32'">\r
- <CustomBuildStep>\r
- <Command>\r
- </Command>\r
- <Inputs>\r
- </Inputs>\r
- <TreatOutputAsContent>\r
- </TreatOutputAsContent>\r
- <Outputs>\r
- </Outputs>\r
- </CustomBuildStep>\r
- </ItemDefinitionGroup>\r
- <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Windows 8 Release|x64'">\r
- <CustomBuildStep>\r
- <Command>\r
- </Command>\r
- <Inputs>\r
- </Inputs>\r
- <TreatOutputAsContent>\r
- </TreatOutputAsContent>\r
- <Outputs>\r
- </Outputs>\r
- </CustomBuildStep>\r
- </ItemDefinitionGroup>\r
- <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Windows Vista Debug|x64'">\r
- <CustomBuildStep>\r
- <Command>\r
- </Command>\r
- <Inputs>\r
- </Inputs>\r
- <TreatOutputAsContent>\r
- </TreatOutputAsContent>\r
- <Outputs>\r
- </Outputs>\r
- </CustomBuildStep>\r
- </ItemDefinitionGroup>\r
- <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Windows Vista Release|x64'">\r
- <CustomBuildStep>\r
- <Command>\r
- </Command>\r
- <Inputs>\r
- </Inputs>\r
- <TreatOutputAsContent>\r
- </TreatOutputAsContent>\r
- <Outputs>\r
- </Outputs>\r
- </CustomBuildStep>\r
- </ItemDefinitionGroup>\r
- <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Windows 7 Release|x64'">\r
- <CustomBuildStep>\r
- <Command>\r
- </Command>\r
- <Inputs>\r
- </Inputs>\r
- <TreatOutputAsContent>\r
- </TreatOutputAsContent>\r
- <Outputs>\r
- </Outputs>\r
- </CustomBuildStep>\r
- </ItemDefinitionGroup>\r
- <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Windows 7 Debug|x64'">\r
- <CustomBuildStep>\r
- <Command>\r
- </Command>\r
- <Inputs>\r
- </Inputs>\r
- <TreatOutputAsContent>\r
- </TreatOutputAsContent>\r
- <Outputs>\r
- </Outputs>\r
- </CustomBuildStep>\r
- </ItemDefinitionGroup>\r
- <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Windows 8 Debug|x64'">\r
- <CustomBuildStep>\r
- <Command>\r
- </Command>\r
- <Inputs>\r
- </Inputs>\r
- <TreatOutputAsContent>\r
- </TreatOutputAsContent>\r
- <Outputs>\r
- </Outputs>\r
- </CustomBuildStep>\r
- </ItemDefinitionGroup>\r
- <ItemGroup>\r
- <ProjectReference Include="..\xenfilt\xenfilt.vcxproj">\r
- <Project>{d7411b2c-2c43-434d-9f56-e10a3d2f5bad}</Project>\r
- </ProjectReference>\r
- <ProjectReference Include="..\xenbus_coinst\xenbus_coinst.vcxproj">\r
- <Project>{4bf41378-c01b-4002-8581-563c5f703362}</Project>\r
- </ProjectReference>\r
- <ProjectReference Include="..\xenbus\xenbus.vcxproj">\r
- <Project>{14c16c29-77c9-475b-a618-1b01e67cf985}</Project>\r
- </ProjectReference>\r
- <ProjectReference Include="..\xen\xen.vcxproj">\r
- <Project>{9c6a5d48-a331-4b1f-a004-7bb67ba5be1c}</Project>\r
- </ProjectReference>\r
- </ItemGroup>\r
- <ItemGroup>\r
- <FilesToPackage Include="$(KIT)\Redist\DIFx\dpinst\EngMui\x86\dpinst.exe" Condition="'$(Platform)'=='Win32'" />\r
- <FilesToPackage Include="$(KIT)\Redist\DIFx\dpinst\EngMui\x64\dpinst.exe" Condition="'$(Platform)'=='x64'" />\r
- </ItemGroup>\r
- <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />\r
- <ImportGroup Label="ExtensionTargets">\r
- </ImportGroup>\r
+<?xml version="1.0" encoding="utf-8"?>
+<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
+ <Import Project="..\configs.props" />
+ <PropertyGroup Label="PropertySheets">
+ <DriverType>WDM</DriverType>
+ <PlatformToolset>WindowsKernelModeDriver8.0</PlatformToolset>
+ <ConfigurationType>Utility</ConfigurationType>
+ <DriverType>Package</DriverType>
+ <DisableFastUpToDateCheck>true</DisableFastUpToDateCheck>
+ </PropertyGroup>
+ <PropertyGroup Label="Globals">
+ <Configuration>Windows Vista Debug</Configuration>
+ <Platform Condition="'$(Platform)' == ''">Win32</Platform>
+ <DebuggerFlavor>DbgengKernelDebugger</DebuggerFlavor>
+ </PropertyGroup>
+ <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
+ <PropertyGroup Label="Globals">
+ <ProjectGuid>{92E5A46B-913C-45C6-B6F8-7E062D85279F}</ProjectGuid>
+ </PropertyGroup>
+ <Import Project="..\targets.props" />
+ <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
+ <PropertyGroup>
+ <EnableInf2cat>true</EnableInf2cat>
+ <Inf2CatWindowsVersionList Condition="'$(Platform)'=='x64'">Vista_x64;7_x64;Server2008_x64;Server2008R2_x64;Server8_x64</Inf2CatWindowsVersionList>
+ <Inf2CatWindowsVersionList Condition="'$(Platform)'=='Win32'">Vista_x86;7_x86;Server2008_x86;8_x86</Inf2CatWindowsVersionList>
+ <DebuggerFlavor>DbgengKernelDebugger</DebuggerFlavor>
+ <EnableDeployment>False</EnableDeployment>
+ <ImportToStore>False</ImportToStore>
+ <InstallMode>None</InstallMode>
+ <ScriptDeviceQuery>%PathToInf%</ScriptDeviceQuery>
+ <EnableVerifier>False</EnableVerifier>
+ <AllDrivers>False</AllDrivers>
+ <VerifyProjectOutput>True</VerifyProjectOutput>
+ <VerifyDrivers />
+ <VerifyFlags>133563</VerifyFlags>
+ <IntDir>..\$(ProjectName)\$(ConfigurationName)\$(Platform)\</IntDir>
+ <OutDir>..\$(ConfigurationName)\$(Platform)\</OutDir>
+ <PackageDir>..\..\xenbus\$(DDKPlatform)</PackageDir>
+ </PropertyGroup>
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Windows 7 Debug|Win32'">
+ <CustomBuildBeforeTargets>
+ </CustomBuildBeforeTargets>
+ </PropertyGroup>
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Windows 8 Release|Win32'">
+ <CustomBuildBeforeTargets>
+ </CustomBuildBeforeTargets>
+ </PropertyGroup>
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Windows Vista Debug|Win32'">
+ <CustomBuildBeforeTargets>
+ </CustomBuildBeforeTargets>
+ </PropertyGroup>
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Windows Vista Release|Win32'">
+ <CustomBuildBeforeTargets>
+ </CustomBuildBeforeTargets>
+ </PropertyGroup>
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Windows 7 Release|Win32'">
+ <CustomBuildBeforeTargets>
+ </CustomBuildBeforeTargets>
+ </PropertyGroup>
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Windows 8 Debug|Win32'">
+ <CustomBuildBeforeTargets>
+ </CustomBuildBeforeTargets>
+ </PropertyGroup>
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Windows 8 Release|x64'">
+ <CustomBuildBeforeTargets>
+ </CustomBuildBeforeTargets>
+ </PropertyGroup>
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Windows Vista Debug|x64'">
+ <CustomBuildBeforeTargets>
+ </CustomBuildBeforeTargets>
+ </PropertyGroup>
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Windows Vista Release|x64'">
+ <CustomBuildBeforeTargets>
+ </CustomBuildBeforeTargets>
+ </PropertyGroup>
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Windows 7 Release|x64'">
+ <CustomBuildBeforeTargets>
+ </CustomBuildBeforeTargets>
+ </PropertyGroup>
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Windows 7 Debug|x64'">
+ <CustomBuildBeforeTargets>
+ </CustomBuildBeforeTargets>
+ </PropertyGroup>
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Windows 8 Debug|x64'">
+ <CustomBuildBeforeTargets>
+ </CustomBuildBeforeTargets>
+ </PropertyGroup>
+ <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Windows 8 Release|Win32'">
+ <CustomBuildStep>
+ <Command>
+ </Command>
+ <Inputs>
+ </Inputs>
+ <TreatOutputAsContent>
+ </TreatOutputAsContent>
+ <Outputs>
+ </Outputs>
+ </CustomBuildStep>
+ </ItemDefinitionGroup>
+ <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Windows Vista Debug|Win32'">
+ <CustomBuildStep>
+ <Command>
+ </Command>
+ <Inputs>
+ </Inputs>
+ <TreatOutputAsContent>
+ </TreatOutputAsContent>
+ <Outputs>
+ </Outputs>
+ </CustomBuildStep>
+ </ItemDefinitionGroup>
+ <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Windows Vista Release|Win32'">
+ <CustomBuildStep>
+ <Command>
+ </Command>
+ <Inputs>
+ </Inputs>
+ <TreatOutputAsContent>
+ </TreatOutputAsContent>
+ <Outputs>
+ </Outputs>
+ </CustomBuildStep>
+ </ItemDefinitionGroup>
+ <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Windows 7 Release|Win32'">
+ <CustomBuildStep>
+ <Command>
+ </Command>
+ <Inputs>
+ </Inputs>
+ <TreatOutputAsContent>
+ </TreatOutputAsContent>
+ <Outputs>
+ </Outputs>
+ </CustomBuildStep>
+ </ItemDefinitionGroup>
+ <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Windows 7 Debug|Win32'">
+ <CustomBuildStep>
+ <Command>
+ </Command>
+ <Inputs>
+ </Inputs>
+ <TreatOutputAsContent>
+ </TreatOutputAsContent>
+ <Outputs>
+ </Outputs>
+ </CustomBuildStep>
+ </ItemDefinitionGroup>
+ <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Windows 8 Debug|Win32'">
+ <CustomBuildStep>
+ <Command>
+ </Command>
+ <Inputs>
+ </Inputs>
+ <TreatOutputAsContent>
+ </TreatOutputAsContent>
+ <Outputs>
+ </Outputs>
+ </CustomBuildStep>
+ </ItemDefinitionGroup>
+ <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Windows 8 Release|x64'">
+ <CustomBuildStep>
+ <Command>
+ </Command>
+ <Inputs>
+ </Inputs>
+ <TreatOutputAsContent>
+ </TreatOutputAsContent>
+ <Outputs>
+ </Outputs>
+ </CustomBuildStep>
+ </ItemDefinitionGroup>
+ <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Windows Vista Debug|x64'">
+ <CustomBuildStep>
+ <Command>
+ </Command>
+ <Inputs>
+ </Inputs>
+ <TreatOutputAsContent>
+ </TreatOutputAsContent>
+ <Outputs>
+ </Outputs>
+ </CustomBuildStep>
+ </ItemDefinitionGroup>
+ <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Windows Vista Release|x64'">
+ <CustomBuildStep>
+ <Command>
+ </Command>
+ <Inputs>
+ </Inputs>
+ <TreatOutputAsContent>
+ </TreatOutputAsContent>
+ <Outputs>
+ </Outputs>
+ </CustomBuildStep>
+ </ItemDefinitionGroup>
+ <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Windows 7 Release|x64'">
+ <CustomBuildStep>
+ <Command>
+ </Command>
+ <Inputs>
+ </Inputs>
+ <TreatOutputAsContent>
+ </TreatOutputAsContent>
+ <Outputs>
+ </Outputs>
+ </CustomBuildStep>
+ </ItemDefinitionGroup>
+ <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Windows 7 Debug|x64'">
+ <CustomBuildStep>
+ <Command>
+ </Command>
+ <Inputs>
+ </Inputs>
+ <TreatOutputAsContent>
+ </TreatOutputAsContent>
+ <Outputs>
+ </Outputs>
+ </CustomBuildStep>
+ </ItemDefinitionGroup>
+ <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Windows 8 Debug|x64'">
+ <CustomBuildStep>
+ <Command>
+ </Command>
+ <Inputs>
+ </Inputs>
+ <TreatOutputAsContent>
+ </TreatOutputAsContent>
+ <Outputs>
+ </Outputs>
+ </CustomBuildStep>
+ </ItemDefinitionGroup>
+ <ItemGroup>
+ <ProjectReference Include="..\xenfilt\xenfilt.vcxproj">
+ <Project>{d7411b2c-2c43-434d-9f56-e10a3d2f5bad}</Project>
+ </ProjectReference>
+ <ProjectReference Include="..\xenbus_coinst\xenbus_coinst.vcxproj">
+ <Project>{4bf41378-c01b-4002-8581-563c5f703362}</Project>
+ </ProjectReference>
+ <ProjectReference Include="..\xenbus\xenbus.vcxproj">
+ <Project>{14c16c29-77c9-475b-a618-1b01e67cf985}</Project>
+ </ProjectReference>
+ <ProjectReference Include="..\xen\xen.vcxproj">
+ <Project>{9c6a5d48-a331-4b1f-a004-7bb67ba5be1c}</Project>
+ </ProjectReference>
+ </ItemGroup>
+ <ItemGroup>
+ <FilesToPackage Include="$(KIT)\Redist\DIFx\dpinst\EngMui\x86\dpinst.exe" Condition="'$(Platform)'=='Win32'" />
+ <FilesToPackage Include="$(KIT)\Redist\DIFx\dpinst\EngMui\x64\dpinst.exe" Condition="'$(Platform)'=='x64'" />
+ </ItemGroup>
+ <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
+ <ImportGroup Label="ExtensionTargets">
+ </ImportGroup>
</Project>
\ No newline at end of file
-Microsoft Visual Studio Solution File, Format Version 12.00\r
-# Visual Studio 2012\r
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "xen", "xen\xen.vcxproj", "{9C6A5D48-A331-4B1F-A004-7BB67BA5BE1C}"\r
-EndProject\r
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "xenfilt", "xenfilt\xenfilt.vcxproj", "{D7411B2C-2C43-434D-9F56-E10A3D2F5BAD}"\r
- ProjectSection(ProjectDependencies) = postProject\r
- {9C6A5D48-A331-4B1F-A004-7BB67BA5BE1C} = {9C6A5D48-A331-4B1F-A004-7BB67BA5BE1C}\r
- EndProjectSection\r
-EndProject\r
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "xenbus_coinst", "xenbus_coinst\xenbus_coinst.vcxproj", "{4BF41378-C01B-4002-8581-563C5F703362}"\r
- ProjectSection(ProjectDependencies) = postProject\r
- {9C6A5D48-A331-4B1F-A004-7BB67BA5BE1C} = {9C6A5D48-A331-4B1F-A004-7BB67BA5BE1C}\r
- EndProjectSection\r
-EndProject\r
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "xenbus", "xenbus\xenbus.vcxproj", "{14C16C29-77C9-475B-A618-1B01E67CF985}"\r
- ProjectSection(ProjectDependencies) = postProject\r
- {9C6A5D48-A331-4B1F-A004-7BB67BA5BE1C} = {9C6A5D48-A331-4B1F-A004-7BB67BA5BE1C}\r
- EndProjectSection\r
-EndProject\r
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "package", "package\package.vcxproj", "{92E5A46B-913C-45C6-B6F8-7E062D85279F}"\r
- ProjectSection(ProjectDependencies) = postProject\r
- {14C16C29-77C9-475B-A618-1B01E67CF985} = {14C16C29-77C9-475B-A618-1B01E67CF985}\r
- {D7411B2C-2C43-434D-9F56-E10A3D2F5BAD} = {D7411B2C-2C43-434D-9F56-E10A3D2F5BAD}\r
- {9C6A5D48-A331-4B1F-A004-7BB67BA5BE1C} = {9C6A5D48-A331-4B1F-A004-7BB67BA5BE1C}\r
- {4BF41378-C01B-4002-8581-563C5F703362} = {4BF41378-C01B-4002-8581-563C5F703362}\r
- EndProjectSection\r
-EndProject\r
-Global\r
- GlobalSection(SolutionConfigurationPlatforms) = preSolution\r
- Windows 7 Debug|Win32 = Windows 7 Debug|Win32\r
- Windows 7 Debug|x64 = Windows 7 Debug|x64\r
- Windows 7 Release|Win32 = Windows 7 Release|Win32\r
- Windows 7 Release|x64 = Windows 7 Release|x64\r
- Windows 8 Debug|Win32 = Windows 8 Debug|Win32\r
- Windows 8 Debug|x64 = Windows 8 Debug|x64\r
- Windows 8 Release|Win32 = Windows 8 Release|Win32\r
- Windows 8 Release|x64 = Windows 8 Release|x64\r
- Windows Vista Debug|Win32 = Windows Vista Debug|Win32\r
- Windows Vista Debug|x64 = Windows Vista Debug|x64\r
- Windows Vista Release|Win32 = Windows Vista Release|Win32\r
- Windows Vista Release|x64 = Windows Vista Release|x64\r
- EndGlobalSection\r
- GlobalSection(ProjectConfigurationPlatforms) = postSolution\r
- {9C6A5D48-A331-4B1F-A004-7BB67BA5BE1C}.Windows 7 Debug|Win32.ActiveCfg = Windows 7 Debug|Win32\r
- {9C6A5D48-A331-4B1F-A004-7BB67BA5BE1C}.Windows 7 Debug|Win32.Build.0 = Windows 7 Debug|Win32\r
- {9C6A5D48-A331-4B1F-A004-7BB67BA5BE1C}.Windows 7 Debug|x64.ActiveCfg = Windows 7 Debug|x64\r
- {9C6A5D48-A331-4B1F-A004-7BB67BA5BE1C}.Windows 7 Debug|x64.Build.0 = Windows 7 Debug|x64\r
- {9C6A5D48-A331-4B1F-A004-7BB67BA5BE1C}.Windows 7 Release|Win32.ActiveCfg = Windows 7 Release|Win32\r
- {9C6A5D48-A331-4B1F-A004-7BB67BA5BE1C}.Windows 7 Release|Win32.Build.0 = Windows 7 Release|Win32\r
- {9C6A5D48-A331-4B1F-A004-7BB67BA5BE1C}.Windows 7 Release|x64.ActiveCfg = Windows 7 Release|x64\r
- {9C6A5D48-A331-4B1F-A004-7BB67BA5BE1C}.Windows 7 Release|x64.Build.0 = Windows 7 Release|x64\r
- {9C6A5D48-A331-4B1F-A004-7BB67BA5BE1C}.Windows 8 Debug|Win32.ActiveCfg = Windows 8 Debug|Win32\r
- {9C6A5D48-A331-4B1F-A004-7BB67BA5BE1C}.Windows 8 Debug|Win32.Build.0 = Windows 8 Debug|Win32\r
- {9C6A5D48-A331-4B1F-A004-7BB67BA5BE1C}.Windows 8 Debug|x64.ActiveCfg = Windows 8 Debug|x64\r
- {9C6A5D48-A331-4B1F-A004-7BB67BA5BE1C}.Windows 8 Debug|x64.Build.0 = Windows 8 Debug|x64\r
- {9C6A5D48-A331-4B1F-A004-7BB67BA5BE1C}.Windows 8 Release|Win32.ActiveCfg = Windows 8 Release|Win32\r
- {9C6A5D48-A331-4B1F-A004-7BB67BA5BE1C}.Windows 8 Release|Win32.Build.0 = Windows 8 Release|Win32\r
- {9C6A5D48-A331-4B1F-A004-7BB67BA5BE1C}.Windows 8 Release|x64.ActiveCfg = Windows 8 Release|x64\r
- {9C6A5D48-A331-4B1F-A004-7BB67BA5BE1C}.Windows 8 Release|x64.Build.0 = Windows 8 Release|x64\r
- {9C6A5D48-A331-4B1F-A004-7BB67BA5BE1C}.Windows Vista Debug|Win32.ActiveCfg = Windows Vista Debug|Win32\r
- {9C6A5D48-A331-4B1F-A004-7BB67BA5BE1C}.Windows Vista Debug|Win32.Build.0 = Windows Vista Debug|Win32\r
- {9C6A5D48-A331-4B1F-A004-7BB67BA5BE1C}.Windows Vista Debug|x64.ActiveCfg = Windows Vista Debug|x64\r
- {9C6A5D48-A331-4B1F-A004-7BB67BA5BE1C}.Windows Vista Debug|x64.Build.0 = Windows Vista Debug|x64\r
- {9C6A5D48-A331-4B1F-A004-7BB67BA5BE1C}.Windows Vista Release|Win32.ActiveCfg = Windows Vista Release|Win32\r
- {9C6A5D48-A331-4B1F-A004-7BB67BA5BE1C}.Windows Vista Release|Win32.Build.0 = Windows Vista Release|Win32\r
- {9C6A5D48-A331-4B1F-A004-7BB67BA5BE1C}.Windows Vista Release|x64.ActiveCfg = Windows Vista Release|x64\r
- {9C6A5D48-A331-4B1F-A004-7BB67BA5BE1C}.Windows Vista Release|x64.Build.0 = Windows Vista Release|x64\r
- {D7411B2C-2C43-434D-9F56-E10A3D2F5BAD}.Windows 7 Debug|Win32.ActiveCfg = Windows 7 Debug|Win32\r
- {D7411B2C-2C43-434D-9F56-E10A3D2F5BAD}.Windows 7 Debug|Win32.Build.0 = Windows 7 Debug|Win32\r
- {D7411B2C-2C43-434D-9F56-E10A3D2F5BAD}.Windows 7 Debug|x64.ActiveCfg = Windows 7 Debug|x64\r
- {D7411B2C-2C43-434D-9F56-E10A3D2F5BAD}.Windows 7 Debug|x64.Build.0 = Windows 7 Debug|x64\r
- {D7411B2C-2C43-434D-9F56-E10A3D2F5BAD}.Windows 7 Release|Win32.ActiveCfg = Windows 7 Release|Win32\r
- {D7411B2C-2C43-434D-9F56-E10A3D2F5BAD}.Windows 7 Release|Win32.Build.0 = Windows 7 Release|Win32\r
- {D7411B2C-2C43-434D-9F56-E10A3D2F5BAD}.Windows 7 Release|x64.ActiveCfg = Windows 7 Release|x64\r
- {D7411B2C-2C43-434D-9F56-E10A3D2F5BAD}.Windows 7 Release|x64.Build.0 = Windows 7 Release|x64\r
- {D7411B2C-2C43-434D-9F56-E10A3D2F5BAD}.Windows 8 Debug|Win32.ActiveCfg = Windows 8 Debug|Win32\r
- {D7411B2C-2C43-434D-9F56-E10A3D2F5BAD}.Windows 8 Debug|Win32.Build.0 = Windows 8 Debug|Win32\r
- {D7411B2C-2C43-434D-9F56-E10A3D2F5BAD}.Windows 8 Debug|x64.ActiveCfg = Windows 8 Debug|x64\r
- {D7411B2C-2C43-434D-9F56-E10A3D2F5BAD}.Windows 8 Debug|x64.Build.0 = Windows 8 Debug|x64\r
- {D7411B2C-2C43-434D-9F56-E10A3D2F5BAD}.Windows 8 Release|Win32.ActiveCfg = Windows 8 Release|Win32\r
- {D7411B2C-2C43-434D-9F56-E10A3D2F5BAD}.Windows 8 Release|Win32.Build.0 = Windows 8 Release|Win32\r
- {D7411B2C-2C43-434D-9F56-E10A3D2F5BAD}.Windows 8 Release|x64.ActiveCfg = Windows 8 Release|x64\r
- {D7411B2C-2C43-434D-9F56-E10A3D2F5BAD}.Windows 8 Release|x64.Build.0 = Windows 8 Release|x64\r
- {D7411B2C-2C43-434D-9F56-E10A3D2F5BAD}.Windows Vista Debug|Win32.ActiveCfg = Windows Vista Debug|Win32\r
- {D7411B2C-2C43-434D-9F56-E10A3D2F5BAD}.Windows Vista Debug|Win32.Build.0 = Windows Vista Debug|Win32\r
- {D7411B2C-2C43-434D-9F56-E10A3D2F5BAD}.Windows Vista Debug|x64.ActiveCfg = Windows Vista Debug|x64\r
- {D7411B2C-2C43-434D-9F56-E10A3D2F5BAD}.Windows Vista Debug|x64.Build.0 = Windows Vista Debug|x64\r
- {D7411B2C-2C43-434D-9F56-E10A3D2F5BAD}.Windows Vista Release|Win32.ActiveCfg = Windows Vista Release|Win32\r
- {D7411B2C-2C43-434D-9F56-E10A3D2F5BAD}.Windows Vista Release|Win32.Build.0 = Windows Vista Release|Win32\r
- {D7411B2C-2C43-434D-9F56-E10A3D2F5BAD}.Windows Vista Release|x64.ActiveCfg = Windows Vista Release|x64\r
- {D7411B2C-2C43-434D-9F56-E10A3D2F5BAD}.Windows Vista Release|x64.Build.0 = Windows Vista Release|x64\r
- {4BF41378-C01B-4002-8581-563C5F703362}.Windows 7 Debug|Win32.ActiveCfg = Windows 7 Debug|Win32\r
- {4BF41378-C01B-4002-8581-563C5F703362}.Windows 7 Debug|Win32.Build.0 = Windows 7 Debug|Win32\r
- {4BF41378-C01B-4002-8581-563C5F703362}.Windows 7 Debug|x64.ActiveCfg = Windows 7 Debug|x64\r
- {4BF41378-C01B-4002-8581-563C5F703362}.Windows 7 Debug|x64.Build.0 = Windows 7 Debug|x64\r
- {4BF41378-C01B-4002-8581-563C5F703362}.Windows 7 Release|Win32.ActiveCfg = Windows 7 Release|Win32\r
- {4BF41378-C01B-4002-8581-563C5F703362}.Windows 7 Release|Win32.Build.0 = Windows 7 Release|Win32\r
- {4BF41378-C01B-4002-8581-563C5F703362}.Windows 7 Release|x64.ActiveCfg = Windows 7 Release|x64\r
- {4BF41378-C01B-4002-8581-563C5F703362}.Windows 7 Release|x64.Build.0 = Windows 7 Release|x64\r
- {4BF41378-C01B-4002-8581-563C5F703362}.Windows 8 Debug|Win32.ActiveCfg = Windows 8 Debug|Win32\r
- {4BF41378-C01B-4002-8581-563C5F703362}.Windows 8 Debug|Win32.Build.0 = Windows 8 Debug|Win32\r
- {4BF41378-C01B-4002-8581-563C5F703362}.Windows 8 Debug|x64.ActiveCfg = Windows 8 Debug|x64\r
- {4BF41378-C01B-4002-8581-563C5F703362}.Windows 8 Debug|x64.Build.0 = Windows 8 Debug|x64\r
- {4BF41378-C01B-4002-8581-563C5F703362}.Windows 8 Release|Win32.ActiveCfg = Windows 8 Release|Win32\r
- {4BF41378-C01B-4002-8581-563C5F703362}.Windows 8 Release|Win32.Build.0 = Windows 8 Release|Win32\r
- {4BF41378-C01B-4002-8581-563C5F703362}.Windows 8 Release|x64.ActiveCfg = Windows 8 Release|x64\r
- {4BF41378-C01B-4002-8581-563C5F703362}.Windows 8 Release|x64.Build.0 = Windows 8 Release|x64\r
- {4BF41378-C01B-4002-8581-563C5F703362}.Windows Vista Debug|Win32.ActiveCfg = Windows Vista Debug|Win32\r
- {4BF41378-C01B-4002-8581-563C5F703362}.Windows Vista Debug|Win32.Build.0 = Windows Vista Debug|Win32\r
- {4BF41378-C01B-4002-8581-563C5F703362}.Windows Vista Debug|x64.ActiveCfg = Windows Vista Debug|x64\r
- {4BF41378-C01B-4002-8581-563C5F703362}.Windows Vista Debug|x64.Build.0 = Windows Vista Debug|x64\r
- {4BF41378-C01B-4002-8581-563C5F703362}.Windows Vista Release|Win32.ActiveCfg = Windows Vista Release|Win32\r
- {4BF41378-C01B-4002-8581-563C5F703362}.Windows Vista Release|Win32.Build.0 = Windows Vista Release|Win32\r
- {4BF41378-C01B-4002-8581-563C5F703362}.Windows Vista Release|x64.ActiveCfg = Windows Vista Release|x64\r
- {4BF41378-C01B-4002-8581-563C5F703362}.Windows Vista Release|x64.Build.0 = Windows Vista Release|x64\r
- {14C16C29-77C9-475B-A618-1B01E67CF985}.Windows 7 Debug|Win32.ActiveCfg = Windows 7 Debug|Win32\r
- {14C16C29-77C9-475B-A618-1B01E67CF985}.Windows 7 Debug|Win32.Build.0 = Windows 7 Debug|Win32\r
- {14C16C29-77C9-475B-A618-1B01E67CF985}.Windows 7 Debug|x64.ActiveCfg = Windows 7 Debug|x64\r
- {14C16C29-77C9-475B-A618-1B01E67CF985}.Windows 7 Debug|x64.Build.0 = Windows 7 Debug|x64\r
- {14C16C29-77C9-475B-A618-1B01E67CF985}.Windows 7 Release|Win32.ActiveCfg = Windows 7 Release|Win32\r
- {14C16C29-77C9-475B-A618-1B01E67CF985}.Windows 7 Release|Win32.Build.0 = Windows 7 Release|Win32\r
- {14C16C29-77C9-475B-A618-1B01E67CF985}.Windows 7 Release|x64.ActiveCfg = Windows 7 Release|x64\r
- {14C16C29-77C9-475B-A618-1B01E67CF985}.Windows 7 Release|x64.Build.0 = Windows 7 Release|x64\r
- {14C16C29-77C9-475B-A618-1B01E67CF985}.Windows 8 Debug|Win32.ActiveCfg = Windows 8 Debug|Win32\r
- {14C16C29-77C9-475B-A618-1B01E67CF985}.Windows 8 Debug|Win32.Build.0 = Windows 8 Debug|Win32\r
- {14C16C29-77C9-475B-A618-1B01E67CF985}.Windows 8 Debug|x64.ActiveCfg = Windows 8 Debug|x64\r
- {14C16C29-77C9-475B-A618-1B01E67CF985}.Windows 8 Debug|x64.Build.0 = Windows 8 Debug|x64\r
- {14C16C29-77C9-475B-A618-1B01E67CF985}.Windows 8 Release|Win32.ActiveCfg = Windows 8 Release|Win32\r
- {14C16C29-77C9-475B-A618-1B01E67CF985}.Windows 8 Release|Win32.Build.0 = Windows 8 Release|Win32\r
- {14C16C29-77C9-475B-A618-1B01E67CF985}.Windows 8 Release|x64.ActiveCfg = Windows 8 Release|x64\r
- {14C16C29-77C9-475B-A618-1B01E67CF985}.Windows 8 Release|x64.Build.0 = Windows 8 Release|x64\r
- {14C16C29-77C9-475B-A618-1B01E67CF985}.Windows Vista Debug|Win32.ActiveCfg = Windows Vista Debug|Win32\r
- {14C16C29-77C9-475B-A618-1B01E67CF985}.Windows Vista Debug|Win32.Build.0 = Windows Vista Debug|Win32\r
- {14C16C29-77C9-475B-A618-1B01E67CF985}.Windows Vista Debug|x64.ActiveCfg = Windows Vista Debug|x64\r
- {14C16C29-77C9-475B-A618-1B01E67CF985}.Windows Vista Debug|x64.Build.0 = Windows Vista Debug|x64\r
- {14C16C29-77C9-475B-A618-1B01E67CF985}.Windows Vista Release|Win32.ActiveCfg = Windows Vista Release|Win32\r
- {14C16C29-77C9-475B-A618-1B01E67CF985}.Windows Vista Release|Win32.Build.0 = Windows Vista Release|Win32\r
- {14C16C29-77C9-475B-A618-1B01E67CF985}.Windows Vista Release|x64.ActiveCfg = Windows Vista Release|x64\r
- {14C16C29-77C9-475B-A618-1B01E67CF985}.Windows Vista Release|x64.Build.0 = Windows Vista Release|x64\r
- {92E5A46B-913C-45C6-B6F8-7E062D85279F}.Windows 7 Debug|Win32.ActiveCfg = Windows 7 Debug|Win32\r
- {92E5A46B-913C-45C6-B6F8-7E062D85279F}.Windows 7 Debug|Win32.Build.0 = Windows 7 Debug|Win32\r
- {92E5A46B-913C-45C6-B6F8-7E062D85279F}.Windows 7 Debug|Win32.Deploy.0 = Windows 7 Debug|Win32\r
- {92E5A46B-913C-45C6-B6F8-7E062D85279F}.Windows 7 Debug|x64.ActiveCfg = Windows 7 Debug|x64\r
- {92E5A46B-913C-45C6-B6F8-7E062D85279F}.Windows 7 Debug|x64.Build.0 = Windows 7 Debug|x64\r
- {92E5A46B-913C-45C6-B6F8-7E062D85279F}.Windows 7 Debug|x64.Deploy.0 = Windows 7 Debug|x64\r
- {92E5A46B-913C-45C6-B6F8-7E062D85279F}.Windows 7 Release|Win32.ActiveCfg = Windows 7 Release|Win32\r
- {92E5A46B-913C-45C6-B6F8-7E062D85279F}.Windows 7 Release|Win32.Build.0 = Windows 7 Release|Win32\r
- {92E5A46B-913C-45C6-B6F8-7E062D85279F}.Windows 7 Release|Win32.Deploy.0 = Windows 7 Release|Win32\r
- {92E5A46B-913C-45C6-B6F8-7E062D85279F}.Windows 7 Release|x64.ActiveCfg = Windows 7 Release|x64\r
- {92E5A46B-913C-45C6-B6F8-7E062D85279F}.Windows 7 Release|x64.Build.0 = Windows 7 Release|x64\r
- {92E5A46B-913C-45C6-B6F8-7E062D85279F}.Windows 7 Release|x64.Deploy.0 = Windows 7 Release|x64\r
- {92E5A46B-913C-45C6-B6F8-7E062D85279F}.Windows 8 Debug|Win32.ActiveCfg = Windows 8 Debug|Win32\r
- {92E5A46B-913C-45C6-B6F8-7E062D85279F}.Windows 8 Debug|Win32.Build.0 = Windows 8 Debug|Win32\r
- {92E5A46B-913C-45C6-B6F8-7E062D85279F}.Windows 8 Debug|Win32.Deploy.0 = Windows 8 Debug|Win32\r
- {92E5A46B-913C-45C6-B6F8-7E062D85279F}.Windows 8 Debug|x64.ActiveCfg = Windows 8 Debug|x64\r
- {92E5A46B-913C-45C6-B6F8-7E062D85279F}.Windows 8 Debug|x64.Build.0 = Windows 8 Debug|x64\r
- {92E5A46B-913C-45C6-B6F8-7E062D85279F}.Windows 8 Debug|x64.Deploy.0 = Windows 8 Debug|x64\r
- {92E5A46B-913C-45C6-B6F8-7E062D85279F}.Windows 8 Release|Win32.ActiveCfg = Windows 8 Release|Win32\r
- {92E5A46B-913C-45C6-B6F8-7E062D85279F}.Windows 8 Release|Win32.Build.0 = Windows 8 Release|Win32\r
- {92E5A46B-913C-45C6-B6F8-7E062D85279F}.Windows 8 Release|Win32.Deploy.0 = Windows 8 Release|Win32\r
- {92E5A46B-913C-45C6-B6F8-7E062D85279F}.Windows 8 Release|x64.ActiveCfg = Windows 8 Release|x64\r
- {92E5A46B-913C-45C6-B6F8-7E062D85279F}.Windows 8 Release|x64.Build.0 = Windows 8 Release|x64\r
- {92E5A46B-913C-45C6-B6F8-7E062D85279F}.Windows 8 Release|x64.Deploy.0 = Windows 8 Release|x64\r
- {92E5A46B-913C-45C6-B6F8-7E062D85279F}.Windows Vista Debug|Win32.ActiveCfg = Windows Vista Debug|Win32\r
- {92E5A46B-913C-45C6-B6F8-7E062D85279F}.Windows Vista Debug|Win32.Build.0 = Windows Vista Debug|Win32\r
- {92E5A46B-913C-45C6-B6F8-7E062D85279F}.Windows Vista Debug|Win32.Deploy.0 = Windows Vista Debug|Win32\r
- {92E5A46B-913C-45C6-B6F8-7E062D85279F}.Windows Vista Debug|x64.ActiveCfg = Windows Vista Debug|x64\r
- {92E5A46B-913C-45C6-B6F8-7E062D85279F}.Windows Vista Debug|x64.Build.0 = Windows Vista Debug|x64\r
- {92E5A46B-913C-45C6-B6F8-7E062D85279F}.Windows Vista Debug|x64.Deploy.0 = Windows Vista Debug|x64\r
- {92E5A46B-913C-45C6-B6F8-7E062D85279F}.Windows Vista Release|Win32.ActiveCfg = Windows Vista Release|Win32\r
- {92E5A46B-913C-45C6-B6F8-7E062D85279F}.Windows Vista Release|Win32.Build.0 = Windows Vista Release|Win32\r
- {92E5A46B-913C-45C6-B6F8-7E062D85279F}.Windows Vista Release|Win32.Deploy.0 = Windows Vista Release|Win32\r
- {92E5A46B-913C-45C6-B6F8-7E062D85279F}.Windows Vista Release|x64.ActiveCfg = Windows Vista Release|x64\r
- {92E5A46B-913C-45C6-B6F8-7E062D85279F}.Windows Vista Release|x64.Build.0 = Windows Vista Release|x64\r
- {92E5A46B-913C-45C6-B6F8-7E062D85279F}.Windows Vista Release|x64.Deploy.0 = Windows Vista Release|x64\r
- EndGlobalSection\r
- GlobalSection(SolutionProperties) = preSolution\r
- HideSolutionNode = FALSE\r
- EndGlobalSection\r
-EndGlobal\r
+Microsoft Visual Studio Solution File, Format Version 12.00
+# Visual Studio 2012
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "xen", "xen\xen.vcxproj", "{9C6A5D48-A331-4B1F-A004-7BB67BA5BE1C}"
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "xenfilt", "xenfilt\xenfilt.vcxproj", "{D7411B2C-2C43-434D-9F56-E10A3D2F5BAD}"
+ ProjectSection(ProjectDependencies) = postProject
+ {9C6A5D48-A331-4B1F-A004-7BB67BA5BE1C} = {9C6A5D48-A331-4B1F-A004-7BB67BA5BE1C}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "xenbus_coinst", "xenbus_coinst\xenbus_coinst.vcxproj", "{4BF41378-C01B-4002-8581-563C5F703362}"
+ ProjectSection(ProjectDependencies) = postProject
+ {9C6A5D48-A331-4B1F-A004-7BB67BA5BE1C} = {9C6A5D48-A331-4B1F-A004-7BB67BA5BE1C}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "xenbus", "xenbus\xenbus.vcxproj", "{14C16C29-77C9-475B-A618-1B01E67CF985}"
+ ProjectSection(ProjectDependencies) = postProject
+ {9C6A5D48-A331-4B1F-A004-7BB67BA5BE1C} = {9C6A5D48-A331-4B1F-A004-7BB67BA5BE1C}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "package", "package\package.vcxproj", "{92E5A46B-913C-45C6-B6F8-7E062D85279F}"
+ ProjectSection(ProjectDependencies) = postProject
+ {14C16C29-77C9-475B-A618-1B01E67CF985} = {14C16C29-77C9-475B-A618-1B01E67CF985}
+ {D7411B2C-2C43-434D-9F56-E10A3D2F5BAD} = {D7411B2C-2C43-434D-9F56-E10A3D2F5BAD}
+ {9C6A5D48-A331-4B1F-A004-7BB67BA5BE1C} = {9C6A5D48-A331-4B1F-A004-7BB67BA5BE1C}
+ {4BF41378-C01B-4002-8581-563C5F703362} = {4BF41378-C01B-4002-8581-563C5F703362}
+ EndProjectSection
+EndProject
+Global
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution
+ Windows 7 Debug|Win32 = Windows 7 Debug|Win32
+ Windows 7 Debug|x64 = Windows 7 Debug|x64
+ Windows 7 Release|Win32 = Windows 7 Release|Win32
+ Windows 7 Release|x64 = Windows 7 Release|x64
+ Windows 8 Debug|Win32 = Windows 8 Debug|Win32
+ Windows 8 Debug|x64 = Windows 8 Debug|x64
+ Windows 8 Release|Win32 = Windows 8 Release|Win32
+ Windows 8 Release|x64 = Windows 8 Release|x64
+ Windows Vista Debug|Win32 = Windows Vista Debug|Win32
+ Windows Vista Debug|x64 = Windows Vista Debug|x64
+ Windows Vista Release|Win32 = Windows Vista Release|Win32
+ Windows Vista Release|x64 = Windows Vista Release|x64
+ EndGlobalSection
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution
+ {9C6A5D48-A331-4B1F-A004-7BB67BA5BE1C}.Windows 7 Debug|Win32.ActiveCfg = Windows 7 Debug|Win32
+ {9C6A5D48-A331-4B1F-A004-7BB67BA5BE1C}.Windows 7 Debug|Win32.Build.0 = Windows 7 Debug|Win32
+ {9C6A5D48-A331-4B1F-A004-7BB67BA5BE1C}.Windows 7 Debug|x64.ActiveCfg = Windows 7 Debug|x64
+ {9C6A5D48-A331-4B1F-A004-7BB67BA5BE1C}.Windows 7 Debug|x64.Build.0 = Windows 7 Debug|x64
+ {9C6A5D48-A331-4B1F-A004-7BB67BA5BE1C}.Windows 7 Release|Win32.ActiveCfg = Windows 7 Release|Win32
+ {9C6A5D48-A331-4B1F-A004-7BB67BA5BE1C}.Windows 7 Release|Win32.Build.0 = Windows 7 Release|Win32
+ {9C6A5D48-A331-4B1F-A004-7BB67BA5BE1C}.Windows 7 Release|x64.ActiveCfg = Windows 7 Release|x64
+ {9C6A5D48-A331-4B1F-A004-7BB67BA5BE1C}.Windows 7 Release|x64.Build.0 = Windows 7 Release|x64
+ {9C6A5D48-A331-4B1F-A004-7BB67BA5BE1C}.Windows 8 Debug|Win32.ActiveCfg = Windows 8 Debug|Win32
+ {9C6A5D48-A331-4B1F-A004-7BB67BA5BE1C}.Windows 8 Debug|Win32.Build.0 = Windows 8 Debug|Win32
+ {9C6A5D48-A331-4B1F-A004-7BB67BA5BE1C}.Windows 8 Debug|x64.ActiveCfg = Windows 8 Debug|x64
+ {9C6A5D48-A331-4B1F-A004-7BB67BA5BE1C}.Windows 8 Debug|x64.Build.0 = Windows 8 Debug|x64
+ {9C6A5D48-A331-4B1F-A004-7BB67BA5BE1C}.Windows 8 Release|Win32.ActiveCfg = Windows 8 Release|Win32
+ {9C6A5D48-A331-4B1F-A004-7BB67BA5BE1C}.Windows 8 Release|Win32.Build.0 = Windows 8 Release|Win32
+ {9C6A5D48-A331-4B1F-A004-7BB67BA5BE1C}.Windows 8 Release|x64.ActiveCfg = Windows 8 Release|x64
+ {9C6A5D48-A331-4B1F-A004-7BB67BA5BE1C}.Windows 8 Release|x64.Build.0 = Windows 8 Release|x64
+ {9C6A5D48-A331-4B1F-A004-7BB67BA5BE1C}.Windows Vista Debug|Win32.ActiveCfg = Windows Vista Debug|Win32
+ {9C6A5D48-A331-4B1F-A004-7BB67BA5BE1C}.Windows Vista Debug|Win32.Build.0 = Windows Vista Debug|Win32
+ {9C6A5D48-A331-4B1F-A004-7BB67BA5BE1C}.Windows Vista Debug|x64.ActiveCfg = Windows Vista Debug|x64
+ {9C6A5D48-A331-4B1F-A004-7BB67BA5BE1C}.Windows Vista Debug|x64.Build.0 = Windows Vista Debug|x64
+ {9C6A5D48-A331-4B1F-A004-7BB67BA5BE1C}.Windows Vista Release|Win32.ActiveCfg = Windows Vista Release|Win32
+ {9C6A5D48-A331-4B1F-A004-7BB67BA5BE1C}.Windows Vista Release|Win32.Build.0 = Windows Vista Release|Win32
+ {9C6A5D48-A331-4B1F-A004-7BB67BA5BE1C}.Windows Vista Release|x64.ActiveCfg = Windows Vista Release|x64
+ {9C6A5D48-A331-4B1F-A004-7BB67BA5BE1C}.Windows Vista Release|x64.Build.0 = Windows Vista Release|x64
+ {D7411B2C-2C43-434D-9F56-E10A3D2F5BAD}.Windows 7 Debug|Win32.ActiveCfg = Windows 7 Debug|Win32
+ {D7411B2C-2C43-434D-9F56-E10A3D2F5BAD}.Windows 7 Debug|Win32.Build.0 = Windows 7 Debug|Win32
+ {D7411B2C-2C43-434D-9F56-E10A3D2F5BAD}.Windows 7 Debug|x64.ActiveCfg = Windows 7 Debug|x64
+ {D7411B2C-2C43-434D-9F56-E10A3D2F5BAD}.Windows 7 Debug|x64.Build.0 = Windows 7 Debug|x64
+ {D7411B2C-2C43-434D-9F56-E10A3D2F5BAD}.Windows 7 Release|Win32.ActiveCfg = Windows 7 Release|Win32
+ {D7411B2C-2C43-434D-9F56-E10A3D2F5BAD}.Windows 7 Release|Win32.Build.0 = Windows 7 Release|Win32
+ {D7411B2C-2C43-434D-9F56-E10A3D2F5BAD}.Windows 7 Release|x64.ActiveCfg = Windows 7 Release|x64
+ {D7411B2C-2C43-434D-9F56-E10A3D2F5BAD}.Windows 7 Release|x64.Build.0 = Windows 7 Release|x64
+ {D7411B2C-2C43-434D-9F56-E10A3D2F5BAD}.Windows 8 Debug|Win32.ActiveCfg = Windows 8 Debug|Win32
+ {D7411B2C-2C43-434D-9F56-E10A3D2F5BAD}.Windows 8 Debug|Win32.Build.0 = Windows 8 Debug|Win32
+ {D7411B2C-2C43-434D-9F56-E10A3D2F5BAD}.Windows 8 Debug|x64.ActiveCfg = Windows 8 Debug|x64
+ {D7411B2C-2C43-434D-9F56-E10A3D2F5BAD}.Windows 8 Debug|x64.Build.0 = Windows 8 Debug|x64
+ {D7411B2C-2C43-434D-9F56-E10A3D2F5BAD}.Windows 8 Release|Win32.ActiveCfg = Windows 8 Release|Win32
+ {D7411B2C-2C43-434D-9F56-E10A3D2F5BAD}.Windows 8 Release|Win32.Build.0 = Windows 8 Release|Win32
+ {D7411B2C-2C43-434D-9F56-E10A3D2F5BAD}.Windows 8 Release|x64.ActiveCfg = Windows 8 Release|x64
+ {D7411B2C-2C43-434D-9F56-E10A3D2F5BAD}.Windows 8 Release|x64.Build.0 = Windows 8 Release|x64
+ {D7411B2C-2C43-434D-9F56-E10A3D2F5BAD}.Windows Vista Debug|Win32.ActiveCfg = Windows Vista Debug|Win32
+ {D7411B2C-2C43-434D-9F56-E10A3D2F5BAD}.Windows Vista Debug|Win32.Build.0 = Windows Vista Debug|Win32
+ {D7411B2C-2C43-434D-9F56-E10A3D2F5BAD}.Windows Vista Debug|x64.ActiveCfg = Windows Vista Debug|x64
+ {D7411B2C-2C43-434D-9F56-E10A3D2F5BAD}.Windows Vista Debug|x64.Build.0 = Windows Vista Debug|x64
+ {D7411B2C-2C43-434D-9F56-E10A3D2F5BAD}.Windows Vista Release|Win32.ActiveCfg = Windows Vista Release|Win32
+ {D7411B2C-2C43-434D-9F56-E10A3D2F5BAD}.Windows Vista Release|Win32.Build.0 = Windows Vista Release|Win32
+ {D7411B2C-2C43-434D-9F56-E10A3D2F5BAD}.Windows Vista Release|x64.ActiveCfg = Windows Vista Release|x64
+ {D7411B2C-2C43-434D-9F56-E10A3D2F5BAD}.Windows Vista Release|x64.Build.0 = Windows Vista Release|x64
+ {4BF41378-C01B-4002-8581-563C5F703362}.Windows 7 Debug|Win32.ActiveCfg = Windows 7 Debug|Win32
+ {4BF41378-C01B-4002-8581-563C5F703362}.Windows 7 Debug|Win32.Build.0 = Windows 7 Debug|Win32
+ {4BF41378-C01B-4002-8581-563C5F703362}.Windows 7 Debug|x64.ActiveCfg = Windows 7 Debug|x64
+ {4BF41378-C01B-4002-8581-563C5F703362}.Windows 7 Debug|x64.Build.0 = Windows 7 Debug|x64
+ {4BF41378-C01B-4002-8581-563C5F703362}.Windows 7 Release|Win32.ActiveCfg = Windows 7 Release|Win32
+ {4BF41378-C01B-4002-8581-563C5F703362}.Windows 7 Release|Win32.Build.0 = Windows 7 Release|Win32
+ {4BF41378-C01B-4002-8581-563C5F703362}.Windows 7 Release|x64.ActiveCfg = Windows 7 Release|x64
+ {4BF41378-C01B-4002-8581-563C5F703362}.Windows 7 Release|x64.Build.0 = Windows 7 Release|x64
+ {4BF41378-C01B-4002-8581-563C5F703362}.Windows 8 Debug|Win32.ActiveCfg = Windows 8 Debug|Win32
+ {4BF41378-C01B-4002-8581-563C5F703362}.Windows 8 Debug|Win32.Build.0 = Windows 8 Debug|Win32
+ {4BF41378-C01B-4002-8581-563C5F703362}.Windows 8 Debug|x64.ActiveCfg = Windows 8 Debug|x64
+ {4BF41378-C01B-4002-8581-563C5F703362}.Windows 8 Debug|x64.Build.0 = Windows 8 Debug|x64
+ {4BF41378-C01B-4002-8581-563C5F703362}.Windows 8 Release|Win32.ActiveCfg = Windows 8 Release|Win32
+ {4BF41378-C01B-4002-8581-563C5F703362}.Windows 8 Release|Win32.Build.0 = Windows 8 Release|Win32
+ {4BF41378-C01B-4002-8581-563C5F703362}.Windows 8 Release|x64.ActiveCfg = Windows 8 Release|x64
+ {4BF41378-C01B-4002-8581-563C5F703362}.Windows 8 Release|x64.Build.0 = Windows 8 Release|x64
+ {4BF41378-C01B-4002-8581-563C5F703362}.Windows Vista Debug|Win32.ActiveCfg = Windows Vista Debug|Win32
+ {4BF41378-C01B-4002-8581-563C5F703362}.Windows Vista Debug|Win32.Build.0 = Windows Vista Debug|Win32
+ {4BF41378-C01B-4002-8581-563C5F703362}.Windows Vista Debug|x64.ActiveCfg = Windows Vista Debug|x64
+ {4BF41378-C01B-4002-8581-563C5F703362}.Windows Vista Debug|x64.Build.0 = Windows Vista Debug|x64
+ {4BF41378-C01B-4002-8581-563C5F703362}.Windows Vista Release|Win32.ActiveCfg = Windows Vista Release|Win32
+ {4BF41378-C01B-4002-8581-563C5F703362}.Windows Vista Release|Win32.Build.0 = Windows Vista Release|Win32
+ {4BF41378-C01B-4002-8581-563C5F703362}.Windows Vista Release|x64.ActiveCfg = Windows Vista Release|x64
+ {4BF41378-C01B-4002-8581-563C5F703362}.Windows Vista Release|x64.Build.0 = Windows Vista Release|x64
+ {14C16C29-77C9-475B-A618-1B01E67CF985}.Windows 7 Debug|Win32.ActiveCfg = Windows 7 Debug|Win32
+ {14C16C29-77C9-475B-A618-1B01E67CF985}.Windows 7 Debug|Win32.Build.0 = Windows 7 Debug|Win32
+ {14C16C29-77C9-475B-A618-1B01E67CF985}.Windows 7 Debug|x64.ActiveCfg = Windows 7 Debug|x64
+ {14C16C29-77C9-475B-A618-1B01E67CF985}.Windows 7 Debug|x64.Build.0 = Windows 7 Debug|x64
+ {14C16C29-77C9-475B-A618-1B01E67CF985}.Windows 7 Release|Win32.ActiveCfg = Windows 7 Release|Win32
+ {14C16C29-77C9-475B-A618-1B01E67CF985}.Windows 7 Release|Win32.Build.0 = Windows 7 Release|Win32
+ {14C16C29-77C9-475B-A618-1B01E67CF985}.Windows 7 Release|x64.ActiveCfg = Windows 7 Release|x64
+ {14C16C29-77C9-475B-A618-1B01E67CF985}.Windows 7 Release|x64.Build.0 = Windows 7 Release|x64
+ {14C16C29-77C9-475B-A618-1B01E67CF985}.Windows 8 Debug|Win32.ActiveCfg = Windows 8 Debug|Win32
+ {14C16C29-77C9-475B-A618-1B01E67CF985}.Windows 8 Debug|Win32.Build.0 = Windows 8 Debug|Win32
+ {14C16C29-77C9-475B-A618-1B01E67CF985}.Windows 8 Debug|x64.ActiveCfg = Windows 8 Debug|x64
+ {14C16C29-77C9-475B-A618-1B01E67CF985}.Windows 8 Debug|x64.Build.0 = Windows 8 Debug|x64
+ {14C16C29-77C9-475B-A618-1B01E67CF985}.Windows 8 Release|Win32.ActiveCfg = Windows 8 Release|Win32
+ {14C16C29-77C9-475B-A618-1B01E67CF985}.Windows 8 Release|Win32.Build.0 = Windows 8 Release|Win32
+ {14C16C29-77C9-475B-A618-1B01E67CF985}.Windows 8 Release|x64.ActiveCfg = Windows 8 Release|x64
+ {14C16C29-77C9-475B-A618-1B01E67CF985}.Windows 8 Release|x64.Build.0 = Windows 8 Release|x64
+ {14C16C29-77C9-475B-A618-1B01E67CF985}.Windows Vista Debug|Win32.ActiveCfg = Windows Vista Debug|Win32
+ {14C16C29-77C9-475B-A618-1B01E67CF985}.Windows Vista Debug|Win32.Build.0 = Windows Vista Debug|Win32
+ {14C16C29-77C9-475B-A618-1B01E67CF985}.Windows Vista Debug|x64.ActiveCfg = Windows Vista Debug|x64
+ {14C16C29-77C9-475B-A618-1B01E67CF985}.Windows Vista Debug|x64.Build.0 = Windows Vista Debug|x64
+ {14C16C29-77C9-475B-A618-1B01E67CF985}.Windows Vista Release|Win32.ActiveCfg = Windows Vista Release|Win32
+ {14C16C29-77C9-475B-A618-1B01E67CF985}.Windows Vista Release|Win32.Build.0 = Windows Vista Release|Win32
+ {14C16C29-77C9-475B-A618-1B01E67CF985}.Windows Vista Release|x64.ActiveCfg = Windows Vista Release|x64
+ {14C16C29-77C9-475B-A618-1B01E67CF985}.Windows Vista Release|x64.Build.0 = Windows Vista Release|x64
+ {92E5A46B-913C-45C6-B6F8-7E062D85279F}.Windows 7 Debug|Win32.ActiveCfg = Windows 7 Debug|Win32
+ {92E5A46B-913C-45C6-B6F8-7E062D85279F}.Windows 7 Debug|Win32.Build.0 = Windows 7 Debug|Win32
+ {92E5A46B-913C-45C6-B6F8-7E062D85279F}.Windows 7 Debug|Win32.Deploy.0 = Windows 7 Debug|Win32
+ {92E5A46B-913C-45C6-B6F8-7E062D85279F}.Windows 7 Debug|x64.ActiveCfg = Windows 7 Debug|x64
+ {92E5A46B-913C-45C6-B6F8-7E062D85279F}.Windows 7 Debug|x64.Build.0 = Windows 7 Debug|x64
+ {92E5A46B-913C-45C6-B6F8-7E062D85279F}.Windows 7 Debug|x64.Deploy.0 = Windows 7 Debug|x64
+ {92E5A46B-913C-45C6-B6F8-7E062D85279F}.Windows 7 Release|Win32.ActiveCfg = Windows 7 Release|Win32
+ {92E5A46B-913C-45C6-B6F8-7E062D85279F}.Windows 7 Release|Win32.Build.0 = Windows 7 Release|Win32
+ {92E5A46B-913C-45C6-B6F8-7E062D85279F}.Windows 7 Release|Win32.Deploy.0 = Windows 7 Release|Win32
+ {92E5A46B-913C-45C6-B6F8-7E062D85279F}.Windows 7 Release|x64.ActiveCfg = Windows 7 Release|x64
+ {92E5A46B-913C-45C6-B6F8-7E062D85279F}.Windows 7 Release|x64.Build.0 = Windows 7 Release|x64
+ {92E5A46B-913C-45C6-B6F8-7E062D85279F}.Windows 7 Release|x64.Deploy.0 = Windows 7 Release|x64
+ {92E5A46B-913C-45C6-B6F8-7E062D85279F}.Windows 8 Debug|Win32.ActiveCfg = Windows 8 Debug|Win32
+ {92E5A46B-913C-45C6-B6F8-7E062D85279F}.Windows 8 Debug|Win32.Build.0 = Windows 8 Debug|Win32
+ {92E5A46B-913C-45C6-B6F8-7E062D85279F}.Windows 8 Debug|Win32.Deploy.0 = Windows 8 Debug|Win32
+ {92E5A46B-913C-45C6-B6F8-7E062D85279F}.Windows 8 Debug|x64.ActiveCfg = Windows 8 Debug|x64
+ {92E5A46B-913C-45C6-B6F8-7E062D85279F}.Windows 8 Debug|x64.Build.0 = Windows 8 Debug|x64
+ {92E5A46B-913C-45C6-B6F8-7E062D85279F}.Windows 8 Debug|x64.Deploy.0 = Windows 8 Debug|x64
+ {92E5A46B-913C-45C6-B6F8-7E062D85279F}.Windows 8 Release|Win32.ActiveCfg = Windows 8 Release|Win32
+ {92E5A46B-913C-45C6-B6F8-7E062D85279F}.Windows 8 Release|Win32.Build.0 = Windows 8 Release|Win32
+ {92E5A46B-913C-45C6-B6F8-7E062D85279F}.Windows 8 Release|Win32.Deploy.0 = Windows 8 Release|Win32
+ {92E5A46B-913C-45C6-B6F8-7E062D85279F}.Windows 8 Release|x64.ActiveCfg = Windows 8 Release|x64
+ {92E5A46B-913C-45C6-B6F8-7E062D85279F}.Windows 8 Release|x64.Build.0 = Windows 8 Release|x64
+ {92E5A46B-913C-45C6-B6F8-7E062D85279F}.Windows 8 Release|x64.Deploy.0 = Windows 8 Release|x64
+ {92E5A46B-913C-45C6-B6F8-7E062D85279F}.Windows Vista Debug|Win32.ActiveCfg = Windows Vista Debug|Win32
+ {92E5A46B-913C-45C6-B6F8-7E062D85279F}.Windows Vista Debug|Win32.Build.0 = Windows Vista Debug|Win32
+ {92E5A46B-913C-45C6-B6F8-7E062D85279F}.Windows Vista Debug|Win32.Deploy.0 = Windows Vista Debug|Win32
+ {92E5A46B-913C-45C6-B6F8-7E062D85279F}.Windows Vista Debug|x64.ActiveCfg = Windows Vista Debug|x64
+ {92E5A46B-913C-45C6-B6F8-7E062D85279F}.Windows Vista Debug|x64.Build.0 = Windows Vista Debug|x64
+ {92E5A46B-913C-45C6-B6F8-7E062D85279F}.Windows Vista Debug|x64.Deploy.0 = Windows Vista Debug|x64
+ {92E5A46B-913C-45C6-B6F8-7E062D85279F}.Windows Vista Release|Win32.ActiveCfg = Windows Vista Release|Win32
+ {92E5A46B-913C-45C6-B6F8-7E062D85279F}.Windows Vista Release|Win32.Build.0 = Windows Vista Release|Win32
+ {92E5A46B-913C-45C6-B6F8-7E062D85279F}.Windows Vista Release|Win32.Deploy.0 = Windows Vista Release|Win32
+ {92E5A46B-913C-45C6-B6F8-7E062D85279F}.Windows Vista Release|x64.ActiveCfg = Windows Vista Release|x64
+ {92E5A46B-913C-45C6-B6F8-7E062D85279F}.Windows Vista Release|x64.Build.0 = Windows Vista Release|x64
+ {92E5A46B-913C-45C6-B6F8-7E062D85279F}.Windows Vista Release|x64.Deploy.0 = Windows Vista Release|x64
+ EndGlobalSection
+ GlobalSection(SolutionProperties) = preSolution
+ HideSolutionNode = FALSE
+ EndGlobalSection
+EndGlobal
-<?xml version="1.0" encoding="utf-8"?>
+<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="..\configs.props" />
<PropertyGroup Label="PropertySheets">
-<?xml version="1.0" encoding="utf-8"?>
+<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="..\configs.props" />
<PropertyGroup Label="Globals">