[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[win-pv-devel] [PATCH 1/6] Fix line endings



Signed-off-by: Paul Durrant <paul.durrant@xxxxxxxxxx>
---
 BUILD.md                       |  94 ++++----
 doc/groups.dox                 |   6 +-
 doc/main.dox                   |   8 +-
 get_xen_headers.py             | 152 ++++++-------
 include/version.hx             | 109 +++++----
 vs2012/package/package.vcxproj | 504 ++++++++++++++++++++---------------------
 vs2012/xenbus.sln              | 360 ++++++++++++++---------------
 vs2013/package/package.vcxproj |   2 +-
 vs2013/xenfilt/xenfilt.vcxproj |   2 +-
 9 files changed, 618 insertions(+), 619 deletions(-)

diff --git a/BUILD.md b/BUILD.md
index 8126079..c0f9c37 100644
--- a/BUILD.md
+++ b/BUILD.md
@@ -1,47 +1,47 @@
-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
+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
diff --git a/doc/groups.dox b/doc/groups.dox
index 05259a9..6be0359 100644
--- a/doc/groups.dox
+++ b/doc/groups.dox
@@ -1,4 +1,4 @@
-/*!
- * \defgroup interfaces "Interfaces"
- * \brief This group contains all the interfaces exported by drivers in this 
package
+/*!
+ * \defgroup interfaces "Interfaces"
+ * \brief This group contains all the interfaces exported by drivers in this 
package
  */
\ No newline at end of file
diff --git a/doc/main.dox b/doc/main.dox
index 832019e..b5a07d2 100644
--- a/doc/main.dox
+++ b/doc/main.dox
@@ -1,5 +1,5 @@
-/*!
- * \mainpage XENBUS Documentation
- *
- * \ref interfaces "Interfaces"
+/*!
+ * \mainpage XENBUS Documentation
+ *
+ * \ref interfaces "Interfaces"
  */
\ No newline at end of file
diff --git a/get_xen_headers.py b/get_xen_headers.py
index ef1a2c8..3b7258e 100755
--- a/get_xen_headers.py
+++ b/get_xen_headers.py
@@ -1,76 +1,76 @@
-#!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')
+#!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')
diff --git a/include/version.hx b/include/version.hx
index 92b0a6b..4b7351d 100644
--- a/include/version.hx
+++ b/include/version.hx
@@ -1,55 +1,54 @@
-/* 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@"
-
+/* 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@"
diff --git a/vs2012/package/package.vcxproj b/vs2012/package/package.vcxproj
index 58b9378..e664d75 100644
--- a/vs2012/package/package.vcxproj
+++ b/vs2012/package/package.vcxproj
@@ -1,253 +1,253 @@
-ï<?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>
+<?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
diff --git a/vs2012/xenbus.sln b/vs2012/xenbus.sln
index ff16150..626fd85 100644
--- a/vs2012/xenbus.sln
+++ b/vs2012/xenbus.sln
@@ -1,180 +1,180 @@
-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
+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
diff --git a/vs2013/package/package.vcxproj b/vs2013/package/package.vcxproj
index 936f1a3..be13fd9 100644
--- a/vs2013/package/package.vcxproj
+++ b/vs2013/package/package.vcxproj
@@ -1,4 +1,4 @@
-ï<?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">
diff --git a/vs2013/xenfilt/xenfilt.vcxproj b/vs2013/xenfilt/xenfilt.vcxproj
index e8cab33..16623ce 100644
--- a/vs2013/xenfilt/xenfilt.vcxproj
+++ b/vs2013/xenfilt/xenfilt.vcxproj
@@ -1,4 +1,4 @@
-ï<?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">
-- 
2.1.1


_______________________________________________
win-pv-devel mailing list
win-pv-devel@xxxxxxxxxxxxxxxxxxxx
http://lists.xenproject.org/cgi-bin/mailman/listinfo/win-pv-devel

 


Rackspace

Lists.xenproject.org is hosted with RackSpace, monitoring our
servers 24x7x365 and backed by RackSpace's Fanatical Support®.