// gnssdriver.h
typedef struct {
ULONG Size;
ULONG Version;
WCHAR ManufacturerID[25];
WCHAR HardwareID[25];
WCHAR FirmwareVersion[20];
BYTE Unused[512];
} GNSS_CHIPSETINFO, *PGNSS_CHIPSETINFO;
View the official Windows Driver Kit DDI referenceNo description available.
This structure defines the specific data elements associated with the GNSS hardware.
SizeThe structure size.
VersionThe version number.
ManufacturerIDString containing an identifier for the manufacturer.
HardwareIDString containing an identifier for the specific GNSS chipset or combo chipset.
FirmwareVersionVersion of the firmware for the GNSS chipset. This would be a string, typically of the format NNNN.NNNN.NNNN.NNNN.
UnusedPadding buffer reserved for future use.