BUS_SPECIFIC_RESET_FLAGS - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// wdm.h

typedef union _BUS_SPECIFIC_RESET_FLAGS {
  struct {
    ULONGLONG KeepStackReset : 1;
    ULONGLONG Reserved : 63;
  } u;
  ULONGLONG AsUlonglong;
} BUS_SPECIFIC_RESET_FLAGS, *PBUS_SPECIFIC_RESET_FLAGS;
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (ns-wdm-bus_specific_reset_flags)

Description

This topic describes the BUS_SPECIFIC_RESET_FLAGS union.

Members

u

Defines the u structure.

u.KeepStackReset

Defines the ULONGLONG member KeepStackReset.

u.Reserved

Reserved for future use.

AsUlonglong

Defines the ULONGLONG member AsUlonglong.

Remarks

See also