views:

347

answers:

1

I am using ExAllocatePoolWithTag and the builder warns me about ExAllocatePool being deprecated. Is this just an artifact, because the former uses the latter? If not, what is to be used instead?

+1  A: 

ExAllocatePool is deprecated.

ExAllocatePoolWithTag is not and should be used instead.

Christopher