bthprops.cpl: Add BluetoothFindDeviceClose stub.
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=46706 Signed-off-by: Louis Lenders <xerox.xerox2000x@gmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
abfa6784ab
commit
f59e7f8391
|
@ -11,7 +11,7 @@
|
|||
@ stub BluetoothEnumerateInstalledServicesEx
|
||||
@ stub BluetoothFindBrowseGroupClose
|
||||
@ stub BluetoothFindClassIdClose
|
||||
@ stub BluetoothFindDeviceClose
|
||||
@ stdcall BluetoothFindDeviceClose(ptr)
|
||||
@ stub BluetoothFindFirstBrowseGroup
|
||||
@ stub BluetoothFindFirstClassId
|
||||
@ stdcall BluetoothFindFirstDevice(ptr ptr)
|
||||
|
|
|
@ -60,3 +60,13 @@ BOOL WINAPI BluetoothFindRadioClose(HBLUETOOTH_RADIO_FIND find)
|
|||
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||
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 @@
|
|||
@ stub BluetoothEnumerateInstalledServices
|
||||
@ stub BluetoothFindBrowseGroupClose
|
||||
@ stub BluetoothFindClassIdClose
|
||||
@ stub BluetoothFindDeviceClose
|
||||
@ stdcall BluetoothFindDeviceClose(ptr) bthprops.cpl.BluetoothFindDeviceClose
|
||||
@ stub BluetoothFindFirstBrowseGroup
|
||||
@ stub BluetoothFindFirstClassId
|
||||
@ stdcall BluetoothFindFirstDevice(ptr ptr) bthprops.cpl.BluetoothFindFirstDevice
|
||||
|
|
Loading…
Reference in New Issue