_HEAP_LOOKASIDE

来源:互联网 发布:心知早早孕试纸准确吗 编辑:程序博客网 时间:2024/05/22 08:19

typedef struct _HEAP_LOOKASIDE       // 10 elements, 0x30 bytes (sizeof)
          {
/*0x000*/     union _SLIST_HEADER ListHead;    // 4 elements, 0x8 bytes (sizeof)
/*0x008*/     UINT16       Depth;
/*0x00A*/     UINT16       MaximumDepth;
/*0x00C*/     ULONG32      TotalAllocates;
/*0x010*/     ULONG32      AllocateMisses;
/*0x014*/     ULONG32      TotalFrees;
/*0x018*/     ULONG32      FreeMisses;
/*0x01C*/     ULONG32      LastTotalAllocates;
/*0x020*/     ULONG32      LastAllocateMisses;
/*0x024*/     ULONG32      Counters[2];
/*0x02C*/     UINT8        _PADDING0_[0x4];
          }HEAP_LOOKASIDE, *PHEAP_LOOKASIDE;
0 0
原创粉丝点击