IO_FOEXT_SILO_PARAMETERS - NtDoc

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

typedef struct _IO_FOEXT_SILO_PARAMETERS {
  ULONG  Length;
  union {
    struct {
      ULONG HasHardReference : 1;
      ULONG SpareFlags : 31;
    };
    ULONG Flags;
  };
  PESILO SiloContext;
} IO_FOEXT_SILO_PARAMETERS, *PIO_FOEXT_SILO_PARAMETERS;
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (ns-ntddk-_io_foext_silo_parameters)

_IO_FOEXT_SILO_PARAMETERS structure

Description

This structure describes the Container context that's identified by the IoGetSiloParameters routine.

Members

Length

The length of the structure. This also serves as the structure version.

HasHardReference

SpareFlags

Flags

SiloContext

The container context.