PFNBTH_IS_BLUETOOTH_VERSION_AVAILABLE - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// bthddi.h

PFNBTH_IS_BLUETOOTH_VERSION_AVAILABLE PfnbthIsBluetoothVersionAvailable;

BOOLEAN PfnbthIsBluetoothVersionAvailable(
  [in] UCHAR MajorVersion,
  [in] UCHAR MinorVersion
)
{...}
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nc-bthddi-pfnbth_is_bluetooth_version_available)

PFNBTH_IS_BLUETOOTH_VERSION_AVAILABLE callback function

Description

The IsBluetoothVersionAvailable function checks whether a given Bluetooth version is supported by the operating system.

Parameters

MajorVersion [in]

This parameter specifies the major version number of Bluetooth that is requested.

MinorVersion [in]

This parameter specifies the minor version number of Bluetooth that is requested.

Return value

IsBluetoothVersionAvailable returns TRUE if the Bluetooth version that the operating system provides is greater than or equal to the Bluetooth version number that is being requested.

Remarks

Bluetooth profile drivers should call this function before performing any operations that are not supported in all Bluetooth versions.