// ntddmmc.h
typedef struct _FEATURE_DATA_RESERVED {
FEATURE_HEADER Header;
UCHAR Data[0];
} FEATURE_DATA_RESERVED, *PFEATURE_DATA_RESERVED;
View the official Windows Driver Kit DDI referenceNo description available.
The FEATURE_DATA_RESERVED structure holds information about an unspecified feature.
HeaderContains a FEATURE_HEADER structure with header information for this feature descriptor.
DataContains an array describing unspecified feature structure members.
You can use this structure to access the data of any feature structure as though it were a simple character array.