Commit f74c0f4c authored by Mohamad Al-Jaf's avatar Mohamad Al-Jaf Committed by Alexandre Julliard

bluetoothapis: Add BluetoothRegisterForAuthenticationEx stub.

parent 5d2051eb
......@@ -51,7 +51,7 @@
@ stub BluetoothIsDiscoverable
@ stub BluetoothIsVersionAvailable
@ stub BluetoothRegisterForAuthentication
@ stub BluetoothRegisterForAuthenticationEx
@ stdcall BluetoothRegisterForAuthenticationEx(ptr ptr ptr ptr)
@ stub BluetoothRemoveDevice
@ stub BluetoothSdpEnumAttributes
@ stub BluetoothSdpGetAttributeValue
......
......@@ -99,3 +99,13 @@ BOOL WINAPI BluetoothFindNextDevice(HBLUETOOTH_DEVICE_FIND find, BLUETOOTH_DEVIC
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return FALSE;
}
/*********************************************************************
* BluetoothRegisterForAuthenticationEx
*/
DWORD WINAPI BluetoothRegisterForAuthenticationEx(const BLUETOOTH_DEVICE_INFO *info, HBLUETOOTH_AUTHENTICATION_REGISTRATION *out,
PFN_AUTHENTICATION_CALLBACK_EX callback, void *param)
{
FIXME("(%p, %p, %p, %p): stub!\n", info, out, callback, param);
return ERROR_CALL_NOT_IMPLEMENTED;
}
......@@ -42,7 +42,7 @@
@ stub BluetoothMapClassOfDeviceToImageIndex
@ stub BluetoothMapClassOfDeviceToString
@ stub BluetoothRegisterForAuthentication
@ stub BluetoothRegisterForAuthenticationEx
@ stdcall -import BluetoothRegisterForAuthenticationEx(ptr ptr ptr ptr)
@ stub BluetoothRemoveDevice
@ stub BluetoothSdpEnumAttributes
@ stub BluetoothSdpGetAttributeValue
......
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