bthprops.cpl: Add BluetoothFindFirstDevice stub.
Signed-off-by: Austin English <austinenglish@gmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
cec1281cd7
commit
0880955733
|
@ -14,7 +14,7 @@
|
||||||
@ stub BluetoothFindDeviceClose
|
@ stub BluetoothFindDeviceClose
|
||||||
@ stub BluetoothFindFirstBrowseGroup
|
@ stub BluetoothFindFirstBrowseGroup
|
||||||
@ stub BluetoothFindFirstClassId
|
@ stub BluetoothFindFirstClassId
|
||||||
@ stub BluetoothFindFirstDevice
|
@ stdcall BluetoothFindFirstDevice(ptr ptr)
|
||||||
@ stub BluetoothFindFirstProfileDescriptor
|
@ stub BluetoothFindFirstProfileDescriptor
|
||||||
@ stub BluetoothFindFirstProtocolDescriptorStack
|
@ stub BluetoothFindFirstProtocolDescriptorStack
|
||||||
@ stub BluetoothFindFirstProtocolEntry
|
@ stub BluetoothFindFirstProtocolEntry
|
||||||
|
|
|
@ -31,6 +31,17 @@
|
||||||
|
|
||||||
WINE_DEFAULT_DEBUG_CHANNEL(bthpropscpl);
|
WINE_DEFAULT_DEBUG_CHANNEL(bthpropscpl);
|
||||||
|
|
||||||
|
/*********************************************************************
|
||||||
|
* BluetoothFindFirstDevice
|
||||||
|
*/
|
||||||
|
HBLUETOOTH_DEVICE_FIND WINAPI BluetoothFindFirstDevice(BLUETOOTH_DEVICE_SEARCH_PARAMS *params,
|
||||||
|
BLUETOOTH_DEVICE_INFO *info)
|
||||||
|
{
|
||||||
|
FIXME("(%p %p): stub!\n", params, info);
|
||||||
|
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
/*********************************************************************
|
/*********************************************************************
|
||||||
* BluetoothFindFirstRadio
|
* BluetoothFindFirstRadio
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
@ stub BluetoothFindDeviceClose
|
@ stub BluetoothFindDeviceClose
|
||||||
@ stub BluetoothFindFirstBrowseGroup
|
@ stub BluetoothFindFirstBrowseGroup
|
||||||
@ stub BluetoothFindFirstClassId
|
@ stub BluetoothFindFirstClassId
|
||||||
@ stub BluetoothFindFirstDevice
|
@ stdcall BluetoothFindFirstDevice(ptr ptr) bthprops.cpl.BluetoothFindFirstDevice
|
||||||
@ stub BluetoothFindFirstProfileDescriptor
|
@ stub BluetoothFindFirstProfileDescriptor
|
||||||
@ stub BluetoothFindFirstProtocolDescriptorStack
|
@ stub BluetoothFindFirstProtocolDescriptorStack
|
||||||
@ stub BluetoothFindFirstProtocolEntry
|
@ stub BluetoothFindFirstProtocolEntry
|
||||||
|
|
Loading…
Reference in New Issue