#ifndef _NTWMI_H
#include <pshpack1.h>
typedef struct _ETW_HEAP_EVENT_ALLOC
{
SYSTEM_TRACE_HEADER Header; // Header
PVOID HeapHandle; // Handle of Heap
SIZE_T Size; // Size of allocation in bytes
PVOID Address; // Address of Allocation
ULONG Source; // Type ie Lookaside, Lowfrag or main path
} ETW_HEAP_EVENT_ALLOC, *PETW_HEAP_EVENT_ALLOC;
View code on GitHub
No description available.