// sensorsdef.h
typedef struct SENSOR_COLLECTION_LIST {
ULONG AllocatedSizeInBytes;
ULONG Count;
SENSOR_VALUE_PAIR List[1];
} SENSOR_COLLECTION_LIST, *PSENSOR_COLLECTION_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 SENSOR_VALUE_PAIR structures.
The SENSOR_COLLECTION_LIST structure works with the following helper functions: