// gnssdriver.h
typedef struct {
ULONG Size;
ULONG Version;
GNSS_GEOREGIONTYPE GeoRegionType;
union {
GNSS_GEOREGION_CIRCLE Circle;
BYTE Unused[512];
};
} GNSS_GEOREGION, *PGNSS_GEOREGION;
View the official Windows Driver Kit DDI referenceNo description available.
The GNSS_GEOREGION structure defines the geographical shape of a geofence.
SizeStructure size.
VersionVersion number.
GeoRegionTypeGNSS_GEOREGIONTYPE enumeration that defines the georegion type of a geofence.
CircleGNSS_GEOREGION_CIRCLE structure that defines a circular geofence.
UnusedPadding buffer reserved for future use.
A geographical shape is used to define a geofence. Windows 10 currently supports only circular geofences.