Contains a list of handle operations.
typedef struct _MINIDUMP_HANDLE_OPERATION_LIST {
ULONG32 SizeOfHeader;
ULONG32 SizeOfEntry;
ULONG32 NumberOfEntries;
ULONG32 Reserved;
} MINIDUMP_HANDLE_OPERATION_LIST, *PMINIDUMP_HANDLE_OPERATION_LIST;
SizeOfHeader
The size of the header data for the stream, in bytes. This is generally sizeof(MINIDUMP_HANDLE_OPERATION_LIST).
SizeOfEntry
The size of each entry following the header, in bytes. This is generally sizeof(AVRF_HANDLE_OPERATION).
NumberOfEntries
The number of entries in the stream. These are generally AVRF_HANDLE_OPERATION structures. The entries follow the header.
Reserved
This member is reserved for future use.
For a definition of the AVRF_HANDLE_OPERATION structure, see the Avrfsdk.h header file.
Header: Declared in dbghelp.h.