次の方法で共有


_MINIDUMP_STREAM_TYPE (Compact 2013)

3/26/2014

This enumeration lists the valid Windows Embedded Compact and Windows Embedded Compact stream types.

Stream types 1 to 0x7FFF are reserved for desktop Windows operating systems. Stream types 0x8000 to 0xFFFE are reserved for Windows Embedded Compact and Windows Embedded Compact operating systems.

Syntax

typedef enum _MINIDUMP_STREAM_TYPE {
    UnusedStream                = 0,
    ceStreamNull                = 0x8000,
    ceStreamSystemInfo          = 0x8001,
    ceStreamException           = 0x8002,
    ceStreamModuleList          = 0x8003,
    ceStreamProcessList         = 0x8004,
    ceStreamThreadList          = 0x8005, 
    ceStreamThreadContextList   = 0x8006,
    ceStreamThreadCallStackList = 0x8007,
    ceStreamMemoryVirtualList   = 0x8008,
    ceStreamMemoryPhysicalList  = 0x8009,
    ceStreamBucketParameters    = 0x800A,     
    LastReservedStream          = 0xffff
} MINIDUMP_STREAM_TYPE;

Elements

  • UnusedStream
    Reserved.
  • ceStreamNull
    Start of the enumerated list.
  • ceStreamSystemInfo
    System-wide information about the device and operating system where the fault occurred.
  • ceStreamException
    Exception record and context for the exception that caused the dump file creation.
  • ceStreamModuleList
    Modules that were active on the device at the time the dump file was created.
  • ceStreamProcessList
    Processes that were active on the device at the time the dump file was created.
  • ceStreamThreadList
    Threads that were active on the device at the time the dump file was created.
  • ceStreamThreadContextList
    List of thread context records.
  • ceStreamThreadCallStackList
    List of thread call stack records.
  • ceStreamMemoryVirtualList
    List of virtual memory dumps.
  • ceStreamMemoryPhysicalList
    List of physical memory dumps.
  • ceStreamBucketParameters
    Bucketing parameters for Watson server.
  • LastReservedStream
    Last stream reserved for use by Windows Operating Systems.

Requirements

Header

dwcedump.h

See Also

Reference

Error Report Enumerations
Dump File Structures

Concepts

Error Reporting Dump Files