Closed xmaple555 closed 3 months ago
https://learn.microsoft.com/en-us/windows-hardware/drivers/kernel/updating-deprecated-exallocatepool-calls#driver-updates-for-versions-of-windows-earlier-than-windows-10-version-2004
Replace ExAllocatePoolWithTag with ExAllocatePoolZero. Now The compiler will report a warning if using ExAllocatePoolWithTag.
ExAllocatePoolWithTag
ExAllocatePoolZero
😢
https://learn.microsoft.com/en-us/windows-hardware/drivers/kernel/updating-deprecated-exallocatepool-calls#driver-updates-for-versions-of-windows-earlier-than-windows-10-version-2004
Replace
ExAllocatePoolWithTag
withExAllocatePoolZero
. Now The compiler will report a warning if usingExAllocatePoolWithTag
.