summaryrefslogtreecommitdiff
path: root/pofx/WDF/Driver/MultiComp/lib
diff options
context:
space:
mode:
authorkarlf <[email protected]>2016-08-11 13:28:13 -0700
committerkarlf <[email protected]>2016-08-11 13:28:13 -0700
commit96eb96dfb613e4c745db6bd1f53a92fe7e2290fc (patch)
treead5f3ede5cbcd6b598677ce41bcf8318471bdd92 /pofx/WDF/Driver/MultiComp/lib
parent687b274aa38fd05c8c26e3068932121876d7f745 (diff)
Updated for "Windows 10 Anniversary Update" (Version 1607)
Diffstat (limited to 'pofx/WDF/Driver/MultiComp/lib')
-rw-r--r--pofx/WDF/Driver/MultiComp/lib/WdfPoFx.vcxproj4
-rw-r--r--pofx/WDF/Driver/MultiComp/lib/WdfPoFx.vcxproj.Filters8
-rw-r--r--pofx/WDF/Driver/MultiComp/lib/init.c10
3 files changed, 11 insertions, 11 deletions
diff --git a/pofx/WDF/Driver/MultiComp/lib/WdfPoFx.vcxproj b/pofx/WDF/Driver/MultiComp/lib/WdfPoFx.vcxproj
index 04b9675a..7f389173 100644
--- a/pofx/WDF/Driver/MultiComp/lib/WdfPoFx.vcxproj
+++ b/pofx/WDF/Driver/MultiComp/lib/WdfPoFx.vcxproj
@@ -19,12 +19,12 @@
</ProjectConfiguration>
</ItemGroup>
<PropertyGroup Label="Globals">
- <ProjectGuid>{6F5CB5B9-470D-49F1-8C84-3BBD828E7F34}</ProjectGuid>
+ <ProjectGuid>{448E805C-169F-42A1-BF4D-CA3490FE5F5F}</ProjectGuid>
<RootNamespace>$(MSBuildProjectName)</RootNamespace>
<KMDF_VERSION_MAJOR>1</KMDF_VERSION_MAJOR>
<Configuration Condition="'$(Configuration)' == ''">Debug</Configuration>
<Platform Condition="'$(Platform)' == ''">Win32</Platform>
- <SampleGuid>{D6580125-3CC1-4E07-8BF3-BEF7C714FD13}</SampleGuid>
+ <SampleGuid>{CE20E85F-61A5-47D9-8408-4269A22297E7}</SampleGuid>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
<PropertyGroup Label="Configuration" Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
diff --git a/pofx/WDF/Driver/MultiComp/lib/WdfPoFx.vcxproj.Filters b/pofx/WDF/Driver/MultiComp/lib/WdfPoFx.vcxproj.Filters
index 46754208..e3dac64e 100644
--- a/pofx/WDF/Driver/MultiComp/lib/WdfPoFx.vcxproj.Filters
+++ b/pofx/WDF/Driver/MultiComp/lib/WdfPoFx.vcxproj.Filters
@@ -3,19 +3,19 @@
<ItemGroup>
<Filter Include="Source Files">
<Extensions>cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx;*</Extensions>
- <UniqueIdentifier>{FEA07780-0554-4950-A6AA-EC74D647F750}</UniqueIdentifier>
+ <UniqueIdentifier>{A622FD27-96E2-4E8C-8C13-C509DDE3264F}</UniqueIdentifier>
</Filter>
<Filter Include="Header Files">
<Extensions>h;hpp;hxx;hm;inl;inc;xsd</Extensions>
- <UniqueIdentifier>{E923B5FD-33B2-488E-B3DF-D77981752321}</UniqueIdentifier>
+ <UniqueIdentifier>{CD43B2B0-DBED-427A-85D8-3EA473B78F05}</UniqueIdentifier>
</Filter>
<Filter Include="Resource Files">
<Extensions>rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms;man;xml</Extensions>
- <UniqueIdentifier>{7306C4A1-F2CC-4150-B6DF-1857BAD0D0EC}</UniqueIdentifier>
+ <UniqueIdentifier>{F0DF1836-9E2E-4C0A-B097-1D69D349982D}</UniqueIdentifier>
</Filter>
<Filter Include="Driver Files">
<Extensions>inf;inv;inx;mof;mc;</Extensions>
- <UniqueIdentifier>{C2725E02-5167-47AA-8A56-27B3C7A94B84}</UniqueIdentifier>
+ <UniqueIdentifier>{CEE0D8C7-227D-442A-908F-3360EB6AA60D}</UniqueIdentifier>
</Filter>
</ItemGroup>
<ItemGroup>
diff --git a/pofx/WDF/Driver/MultiComp/lib/init.c b/pofx/WDF/Driver/MultiComp/lib/init.c
index 57ad7744..27d30bb7 100644
--- a/pofx/WDF/Driver/MultiComp/lib/init.c
+++ b/pofx/WDF/Driver/MultiComp/lib/init.c
@@ -392,7 +392,7 @@ Return value:
//
#pragma warning(suppress:28160)
status = WdfMemoryCreate(&objectAttributes,
- NonPagedPool,
+ NonPagedPoolNx,
0, // PoolTag
memorySize,
&memory,
@@ -733,7 +733,7 @@ Return value:
WDF_OBJECT_ATTRIBUTES_INIT(&objectAttributes);
objectAttributes.ParentObject = Device; // auto-delete when parent deleted
status = WdfMemoryCreate(&objectAttributes,
- NonPagedPool,
+ NonPagedPoolNx,
0, // PoolTag
powerIrpPreprocessInfoSize,
&memory,
@@ -977,7 +977,7 @@ PfhInitializePowerFrameworkSettings(
WDF_OBJECT_ATTRIBUTES_INIT(&objectAttributes);
objectAttributes.ParentObject = Device; // auto-delete when parent deleted
status = WdfMemoryCreate(&objectAttributes,
- NonPagedPool,
+ NonPagedPoolNx,
0, // PoolTag
pofxDeviceInfoSize,
&memory,
@@ -1065,7 +1065,7 @@ PfhInitializePowerFrameworkSettings(
WDF_OBJECT_ATTRIBUTES_INIT(&objectAttributes);
objectAttributes.ParentObject = Device;//auto-delete when parent deleted
status = WdfMemoryCreate(&objectAttributes,
- NonPagedPool,
+ NonPagedPoolNx,
0, // PoolTag
idleStatesSize,
&memory,
@@ -1121,7 +1121,7 @@ PfhInitializePowerFrameworkSettings(
WDF_OBJECT_ATTRIBUTES_INIT(&objectAttributes);
objectAttributes.ParentObject = Device; // auto-delete when parent deleted
status = WdfMemoryCreate(&objectAttributes,
- NonPagedPool,
+ NonPagedPoolNx,
0, // PoolTag
componentInfoSize,
&memory,