GNSS_GEOREGION structure (gnssdriver.h)

The GNSS_GEOREGION structure defines the geographical shape of a geofence.

Syntax

typedef struct {
  ULONG              Size;
  ULONG              Version;
  GNSS_GEOREGIONTYPE GeoRegionType;
  union {
    GNSS_GEOREGION_CIRCLE Circle;
    BYTE                  Unused[512];
  };
} GNSS_GEOREGION, *PGNSS_GEOREGION;

Members

Size

Structure size.

Version

Version number.

GeoRegionType

GNSS_GEOREGIONTYPE enumeration that defines the georegion type of a geofence.

Circle

GNSS_GEOREGION_CIRCLE structure that defines a circular geofence.

Unused[512]

Padding buffer reserved for future use.

Remarks

A geographical shape is used to define a geofence. Windows 10 currently supports only circular geofences.

Requirements

Requirement Value
Header gnssdriver.h (include Gnssdriver.h)