Commit f59e7f83 authored by Louis Lenders's avatar Louis Lenders Committed by Alexandre Julliard

bthprops.cpl: Add BluetoothFindDeviceClose stub.

parent abfa6784
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
@ stub BluetoothEnumerateInstalledServicesEx @ stub BluetoothEnumerateInstalledServicesEx
@ stub BluetoothFindBrowseGroupClose @ stub BluetoothFindBrowseGroupClose
@ stub BluetoothFindClassIdClose @ stub BluetoothFindClassIdClose
@ stub BluetoothFindDeviceClose @ stdcall BluetoothFindDeviceClose(ptr)
@ stub BluetoothFindFirstBrowseGroup @ stub BluetoothFindFirstBrowseGroup
@ stub BluetoothFindFirstClassId @ stub BluetoothFindFirstClassId
@ stdcall BluetoothFindFirstDevice(ptr ptr) @ stdcall BluetoothFindFirstDevice(ptr ptr)
......
...@@ -60,3 +60,13 @@ BOOL WINAPI BluetoothFindRadioClose(HBLUETOOTH_RADIO_FIND find) ...@@ -60,3 +60,13 @@ BOOL WINAPI BluetoothFindRadioClose(HBLUETOOTH_RADIO_FIND find)
SetLastError(ERROR_CALL_NOT_IMPLEMENTED); SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return FALSE; return FALSE;
} }
/*********************************************************************
* BluetoothFindDeviceClose
*/
BOOL WINAPI BluetoothFindDeviceClose(HBLUETOOTH_DEVICE_FIND find)
{
FIXME("(%p): stub!\n", find);
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return FALSE;
}
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
@ stub BluetoothEnumerateInstalledServices @ stub BluetoothEnumerateInstalledServices
@ stub BluetoothFindBrowseGroupClose @ stub BluetoothFindBrowseGroupClose
@ stub BluetoothFindClassIdClose @ stub BluetoothFindClassIdClose
@ stub BluetoothFindDeviceClose @ stdcall BluetoothFindDeviceClose(ptr) bthprops.cpl.BluetoothFindDeviceClose
@ stub BluetoothFindFirstBrowseGroup @ stub BluetoothFindFirstBrowseGroup
@ stub BluetoothFindFirstClassId @ stub BluetoothFindFirstClassId
@ stdcall BluetoothFindFirstDevice(ptr ptr) bthprops.cpl.BluetoothFindFirstDevice @ stdcall BluetoothFindFirstDevice(ptr ptr) bthprops.cpl.BluetoothFindFirstDevice
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment