bthprops.cpl: Add BluetoothGetRadioInfo stub.
Needed for War Dust. Signed-off-by: Esdras Tarsis <esdrastarsis@gmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
c2b797cf65
commit
4ffaf9016e
|
@ -35,7 +35,7 @@
|
|||
@ stdcall BluetoothFindRadioClose(ptr)
|
||||
@ stub BluetoothFindServiceClose
|
||||
@ stub BluetoothGetDeviceInfo
|
||||
@ stub BluetoothGetRadioInfo
|
||||
@ stdcall BluetoothGetRadioInfo(ptr ptr)
|
||||
@ stub BluetoothIsConnectable
|
||||
@ stub BluetoothIsDiscoverable
|
||||
@ stub BluetoothIsVersionAvailable
|
||||
|
|
|
@ -80,3 +80,12 @@ BOOL WINAPI BluetoothFindNextRadio(HBLUETOOTH_RADIO_FIND find, HANDLE *radio)
|
|||
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
/*********************************************************************
|
||||
* BluetoothGetRadioInfo
|
||||
*/
|
||||
DWORD WINAPI BluetoothGetRadioInfo(HANDLE radio, PBLUETOOTH_RADIO_INFO info)
|
||||
{
|
||||
FIXME("(%p, %p): stub!\n", radio, info);
|
||||
return ERROR_CALL_NOT_IMPLEMENTED;
|
||||
}
|
||||
|
|
|
@ -31,7 +31,7 @@
|
|||
@ stdcall BluetoothFindRadioClose(ptr) bthprops.cpl.BluetoothFindRadioClose
|
||||
@ stub BluetoothFindServiceClose
|
||||
@ stub BluetoothGetDeviceInfo
|
||||
@ stub BluetoothGetRadioInfo
|
||||
@ stdcall BluetoothGetRadioInfo(ptr ptr) bthprops.cpl.BluetoothGetRadioInfo
|
||||
@ stub BluetoothIsConnectable
|
||||
@ stub BluetoothIsDiscoverable
|
||||
@ stub BluetoothMapClassOfDeviceToImageIndex
|
||||
|
|
Loading…
Reference in New Issue