// gnssdriver.h
// CTL_CODE(0x0022, 0x043, METHOD_BUFFERED, FILE_ANY_ACCESS)
#define IOCTL_GNSS_RESPOND_NI 0x0022010C
View the official Windows Driver Kit DDI referenceNo description available.
The IOCTL_GNSS_RESPOND_NI control code is used by the GNSS adapter to respond to an NI request that was asynchronously communicated to it by the GNSS driver through the resolution of an IOCTL_GNSS_LISTEN_NI request.
A pointer to a GNSS_NI_RESPONSE structure.
Set to sizeof(GNSS_NI_RESPONSE).
Set to NULL.
Set to 0.
Irp->IoStatus.Status is set to STATUS_SUCCESS if the request is successful. Otherwise, Status to the appropriate error condition as a NTSTATUS code.
The driver sets one of the following NTSTATUS values to indicate result.
It is the GNSS driver’s responsibility to pass the user’s response, contained in the GNSS_NI_RESPONSE input structure to the NI. If the response is GNSS_Ni_UserResponseTimeout, the driver should determine the appropriate default response after time-out and send it to the SUPL server.
Creating IOCTL Requests in Drivers
WdfIoTargetSendInternalIoctlOthersSynchronously
WdfIoTargetSendInternalIoctlSynchronously
WdfIoTargetSendIoctlSynchronously