STOWED_EXCEPTION_INFORMATION_HEADER structure

Contains info that identifies the parent structure.

Syntax

typedef struct _STOWED_EXCEPTION_INFORMATION_HEADER {
  ULONG Size;
  ULONG Signature;
} STOWED_EXCEPTION_INFORMATION_HEADER, *PSTOWED_EXCEPTION_INFORMATION_HEADER;

Members

Size

Type: ULONG

Size, in bytes, of the parent structure.

Signature

Type: ULONG

A 32-bit value that specifies the signature of the parent structure.

Value Meaning
STOWED_EXCEPTION_INFORMATION_V1_SIGNATURE
'SE01'
This value indicates that the parent is a STOWED_EXCEPTION_INFORMATION_V1 structure.
STOWED_EXCEPTION_INFORMATION_V2_SIGNATURE
'SE02'
This value indicates that the parent is a STOWED_EXCEPTION_INFORMATION_V2 structure.

Remarks

STOWED_EXCEPTION_INFORMATION_V2 and STOWED_EXCEPTION_INFORMATION_HEADER currently aren't defined in a header that is publicly available so you need to define them in your source code before you use them.

The STOWED_EXCEPTION_INFORMATION_V1 structure is identical to this structure except it doesn't contain the NestedExceptionType and NestedException members.

Requirements

Requirement Value
Minimum supported client
Windows 8 [desktop apps only]
Minimum supported server
Windows Server 2012 [desktop apps only]
Header
None

See also

STOWED_EXCEPTION_INFORMATION_V2