MINIDUMP_THREAD_LIST Structure

Contains a list of threads.

Syntax

typedef struct _MINIDUMP_THREAD_LIST {
    ULONG32 NumberOfThreads;
    MINIDUMP_THREAD Threads[0];
} MINIDUMP_THREAD_LIST, *PMINIDUMP_THREAD_LIST;  

Members

NumberOfThreads
The number of structures in the Threads array.

Threads
An array of MINIDUMP_THREAD structures.

Requirements

Header: Declared in dbghelp.h.

See also

MINIDUMP_STREAM_TYPE

MINIDUMP_THREAD