// pointofservicedriverinterface.h
typedef struct _PosStatisticsHeader {
UINT32 EntryCount;
PosDeviceInformation DeviceInformation;
UINT32 DataLength;
} PosStatisticsHeader;
View the official Windows Driver Kit DDI referenceNo description available.
This structure defines Unified Point of Service (UPOS) standard information about a device. This structure is the header for an incoming statistic.
EntryCountIndicates the number of statistics that follow this header.
DeviceInformationA PosDeviceInformation structure that contains UPOS standard information about the device, such as its category, manufacturer, and firmware revision.
DataLengthIndicates the length, in bytes, of the PosStatisticsHeader and the buffer of PosValueStatisticsEntry that follow this structure in memory.