summaryrefslogtreecommitdiff
path: root/pofx/WDF/Driver/MultiComp/lib/init.c
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/init.c
parent687b274aa38fd05c8c26e3068932121876d7f745 (diff)
Updated for "Windows 10 Anniversary Update" (Version 1607)
Diffstat (limited to 'pofx/WDF/Driver/MultiComp/lib/init.c')
-rw-r--r--pofx/WDF/Driver/MultiComp/lib/init.c10
1 files changed, 5 insertions, 5 deletions
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,