bthprops.cpl: Add BluetoothFindNextDevice stub.
Signed-off-by: Esdras Tarsis <esdrastarsis@gmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
4ffaf9016e
commit
43a9783585
|
@ -23,7 +23,7 @@
|
|||
@ stub BluetoothFindFirstServiceEx
|
||||
@ stub BluetoothFindNextBrowseGroup
|
||||
@ stub BluetoothFindNextClassId
|
||||
@ stub BluetoothFindNextDevice
|
||||
@ stdcall BluetoothFindNextDevice(ptr ptr)
|
||||
@ stub BluetoothFindNextProfileDescriptor
|
||||
@ stub BluetoothFindNextProtocolDescriptorStack
|
||||
@ stub BluetoothFindNextProtocolEntry
|
||||
|
|
|
@ -89,3 +89,13 @@ DWORD WINAPI BluetoothGetRadioInfo(HANDLE radio, PBLUETOOTH_RADIO_INFO info)
|
|||
FIXME("(%p, %p): stub!\n", radio, info);
|
||||
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 @@
|
|||
@ stub BluetoothFindFirstService
|
||||
@ stub BluetoothFindNextBrowseGroup
|
||||
@ stub BluetoothFindNextClassId
|
||||
@ stub BluetoothFindNextDevice
|
||||
@ stdcall BluetoothFindNextDevice(ptr ptr) bthprops.cpl.BluetoothFindNextDevice
|
||||
@ stub BluetoothFindNextProfileDescriptor
|
||||
@ stub BluetoothFindNextProtocolDescriptorStack
|
||||
@ stub BluetoothFindNextProtocolEntry
|
||||
|
|
Loading…
Reference in New Issue