// 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 referenceNo description available.
This structure describes the Container context that's identified by the IoGetSiloParameters routine.
LengthThe length of the structure. This also serves as the structure version.
HasHardReferenceSpareFlagsFlagsSiloContextThe container context.