// sensorsdef.h
typedef struct SENSOR_PROPERTY_LIST {
ULONG AllocatedSizeInBytes;
ULONG Count;
PROPERTYKEY List[1];
} SENSOR_PROPERTY_LIST, *PSENSOR_PROPERTY_LIST;
View the official Windows Driver Kit DDI referenceNo description available.
This structure contains a list of all SENSOR_VALUE_PAIR structures for each sensor. This structure is returned by calling ReadFile.
AllocatedSizeInBytesRepresents the number of elements allocated in List.
CountRepresents the number of used entries in List.
ListA list of PROPERTYKEY values.
Note that the List[1] parameter is a variable-sized buffer. The first element is a place-holder and may not accurately the buffer size.
The SENSOR_COLLECTION_LIST structure works with the following helper functions: