MINIDUMP_HANDLE_OPERATION_LIST structure (minidumpapiset.h)

Contains a list of handle operations.

Syntax

typedef struct _MINIDUMP_HANDLE_OPERATION_LIST {
  ULONG32 SizeOfHeader;
  ULONG32 SizeOfEntry;
  ULONG32 NumberOfEntries;
  ULONG32 Reserved;
} MINIDUMP_HANDLE_OPERATION_LIST, *PMINIDUMP_HANDLE_OPERATION_LIST;

Members

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.

Remarks

For a definition of the AVRF_HANDLE_OPERATION structure, see the Avrfsdk.h header file.

Requirements

Requirement Value
Header minidumpapiset.h (include Dbghelp.h)
Redistributable DbgHelp.dll 6.5 or later

See also

MINIDUMP_STREAM_TYPE