From: Vibhav Pant vibhavp@gmail.com
--- dlls/bluetoothapis/bluetoothapis.spec | 4 ++-- dlls/bluetoothapis/main.c | 18 ++++++++++++++++++ dlls/bthprops.cpl/bthprops.cpl.spec | 4 ++-- 3 files changed, 22 insertions(+), 4 deletions(-)
diff --git a/dlls/bluetoothapis/bluetoothapis.spec b/dlls/bluetoothapis/bluetoothapis.spec index 939072d308c..a28a493311d 100644 --- a/dlls/bluetoothapis/bluetoothapis.spec +++ b/dlls/bluetoothapis/bluetoothapis.spec @@ -47,8 +47,8 @@ @ stub BluetoothGetLocalServiceInfo @ stdcall BluetoothGetRadioInfo(ptr ptr) @ stub BluetoothGetServicePnpInstance -@ stub BluetoothIsConnectable -@ stub BluetoothIsDiscoverable +@ stdcall BluetoothIsConnectable(ptr) +@ stdcall BluetoothIsDiscoverable(ptr) @ stub BluetoothIsVersionAvailable @ stub BluetoothRegisterForAuthentication @ stdcall BluetoothRegisterForAuthenticationEx(ptr ptr ptr ptr) diff --git a/dlls/bluetoothapis/main.c b/dlls/bluetoothapis/main.c index 07a9908b657..ccfbe07258c 100644 --- a/dlls/bluetoothapis/main.c +++ b/dlls/bluetoothapis/main.c @@ -212,6 +212,24 @@ DWORD WINAPI BluetoothGetRadioInfo( HANDLE radio, PBLUETOOTH_RADIO_INFO info ) return ERROR_SUCCESS; }
+/********************************************************************* + * BluetoothIsConnectable + */ +BOOL WINAPI BluetoothIsConnectable( HANDLE radio ) +{ + FIXME( "(%p): stub!\n", radio ); + return FALSE; +} + +/********************************************************************* + * BluetoothIsDiscoverable + */ +BOOL WINAPI BluetoothIsDiscoverable( HANDLE radio ) +{ + FIXME( "(%p): stub!\n", radio ); + return FALSE; +} + /********************************************************************* * BluetoothFindNextDevice */ diff --git a/dlls/bthprops.cpl/bthprops.cpl.spec b/dlls/bthprops.cpl/bthprops.cpl.spec index 7fe1d82ac89..751eec41e79 100644 --- a/dlls/bthprops.cpl/bthprops.cpl.spec +++ b/dlls/bthprops.cpl/bthprops.cpl.spec @@ -36,8 +36,8 @@ @ stub BluetoothFindServiceClose @ stub BluetoothGetDeviceInfo @ stdcall -import BluetoothGetRadioInfo(ptr ptr) -@ stub BluetoothIsConnectable -@ stub BluetoothIsDiscoverable +@ stdcall -import BluetoothIsConnectable(ptr) +@ stdcall -import BluetoothIsDiscoverable(ptr) @ stub BluetoothIsVersionAvailable @ stub BluetoothMapClassOfDeviceToImageIndex @ stub BluetoothMapClassOfDeviceToString