// bthxddi.h
// CTL_CODE(0x0041, 0x101, METHOD_NEITHER, FILE_ANY_ACCESS)
#define IOCTL_BTHX_SET_VERSION 0x00410407
View the official Windows Driver Kit DDI referenceNo description available.
IOCTL_BTHX_SET_VERSION is used to inform the transport driver of the version of the extensibility interface being used.
Profile drivers should use KMDF and its WdfRequestRetrieveInputMemory method to retrieve input parameters. For example, to get the input buffer:
Status = WdfRequestRetrieveInputMemory(_Request, &ReqInMemory);
The buffer describes a BTHX_VERSION structure.
Refer to the WDK Bluetooth samples for more information.
The length of the buffer is the size of the BTHX_VERSION structure.
None.
None.
The Information member of the STATUS_BLOCK structure is set to zero because the Bluetooth driver stack returns no data with this IOCTL.
The Status member is set to one of the values in the following table.
| Status value | Description |
|---|---|
| STATUS_SUCCESS | The IOCTL completed successfully. |
Any unsuccessful NT status code prevents the driver from loading.
IOCTL_BTHX_SET_VERSION is a synchronous operation.
Only one version will be selected and set.