Commit 43a97835 authored by Esdras Tarsis's avatar Esdras Tarsis Committed by Alexandre Julliard

bthprops.cpl: Add BluetoothFindNextDevice stub.

parent 4ffaf901
...@@ -23,7 +23,7 @@ ...@@ -23,7 +23,7 @@
@ stub BluetoothFindFirstServiceEx @ stub BluetoothFindFirstServiceEx
@ stub BluetoothFindNextBrowseGroup @ stub BluetoothFindNextBrowseGroup
@ stub BluetoothFindNextClassId @ stub BluetoothFindNextClassId
@ stub BluetoothFindNextDevice @ stdcall BluetoothFindNextDevice(ptr ptr)
@ stub BluetoothFindNextProfileDescriptor @ stub BluetoothFindNextProfileDescriptor
@ stub BluetoothFindNextProtocolDescriptorStack @ stub BluetoothFindNextProtocolDescriptorStack
@ stub BluetoothFindNextProtocolEntry @ stub BluetoothFindNextProtocolEntry
......
...@@ -89,3 +89,13 @@ DWORD WINAPI BluetoothGetRadioInfo(HANDLE radio, PBLUETOOTH_RADIO_INFO info) ...@@ -89,3 +89,13 @@ DWORD WINAPI BluetoothGetRadioInfo(HANDLE radio, PBLUETOOTH_RADIO_INFO info)
FIXME("(%p, %p): stub!\n", radio, info); FIXME("(%p, %p): stub!\n", radio, info);
return ERROR_CALL_NOT_IMPLEMENTED; return ERROR_CALL_NOT_IMPLEMENTED;
} }
/*********************************************************************
* BluetoothFindNextDevice
*/
BOOL WINAPI BluetoothFindNextDevice(HBLUETOOTH_DEVICE_FIND find, BLUETOOTH_DEVICE_INFO *info)
{
FIXME("(%p, %p): stub!\n", find, info);
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return FALSE;
}
...@@ -19,7 +19,7 @@ ...@@ -19,7 +19,7 @@
@ stub BluetoothFindFirstService @ stub BluetoothFindFirstService
@ stub BluetoothFindNextBrowseGroup @ stub BluetoothFindNextBrowseGroup
@ stub BluetoothFindNextClassId @ stub BluetoothFindNextClassId
@ stub BluetoothFindNextDevice @ stdcall BluetoothFindNextDevice(ptr ptr) bthprops.cpl.BluetoothFindNextDevice
@ stub BluetoothFindNextProfileDescriptor @ stub BluetoothFindNextProfileDescriptor
@ stub BluetoothFindNextProtocolDescriptorStack @ stub BluetoothFindNextProtocolDescriptorStack
@ stub BluetoothFindNextProtocolEntry @ stub BluetoothFindNextProtocolEntry
......
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