Hello
I am on chapter 8 and while trying to build sysmon driver I came across issue that visual studio compains on usage of ExAllocatePoolWithTag
'ExAllocatePoolWithTag': ExAllocatePoolWithTag is deprecated, use ExAllocatePool2.
When I replaced all call with that new function, client couldn't get data anymore.
Finally I decided to ignore that errors via #pragma directive and it was working with ExAllocatePoolWithTag but not with ExAllocatePool2.
my question is, why didn't it work?
Hello
I am on chapter 8 and while trying to build sysmon driver I came across issue that visual studio compains on usage of
ExAllocatePoolWithTag'ExAllocatePoolWithTag': ExAllocatePoolWithTag is deprecated, use ExAllocatePool2.When I replaced all call with that new function, client couldn't get data anymore.
Finally I decided to ignore that errors via #pragma directive and it was working with ExAllocatePoolWithTag but not with ExAllocatePool2.
my question is, why didn't it work?