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

bluetoothapis: Add BluetoothUnregisterAuthentication stub.

parent f74c0f4c
......@@ -63,7 +63,7 @@
@ stub BluetoothSetLocalServiceInfo
@ stub BluetoothSetServiceState
@ stub BluetoothSetServiceStateEx
@ stub BluetoothUnregisterAuthentication
@ stdcall BluetoothUnregisterAuthentication(long)
@ stub BluetoothUpdateDeviceRecord
@ stub BthpCheckForUnsupportedGuid
@ stub BthpCleanupBRDeviceNode
......
......@@ -109,3 +109,13 @@ DWORD WINAPI BluetoothRegisterForAuthenticationEx(const BLUETOOTH_DEVICE_INFO *i
FIXME("(%p, %p, %p, %p): stub!\n", info, out, callback, param);
return ERROR_CALL_NOT_IMPLEMENTED;
}
/*********************************************************************
* BluetoothUnregisterAuthentication
*/
BOOL WINAPI BluetoothUnregisterAuthentication(HBLUETOOTH_AUTHENTICATION_REGISTRATION handle)
{
FIXME("(%p): stub!\n", handle);
if (!handle) SetLastError(ERROR_INVALID_HANDLE);
return FALSE;
}
......@@ -55,7 +55,7 @@
@ stub BluetoothSendAuthenticationResponseEx
@ stub BluetoothSetLocalServiceInfo
@ stub BluetoothSetServiceState
@ stub BluetoothUnregisterAuthentication
@ stdcall -import BluetoothUnregisterAuthentication(long)
@ stub BluetoothUpdateDeviceRecord
@ stub BthpEnableAllServices
@ stub BthpFindPnpInfo
......
......@@ -47,6 +47,6 @@
@ stub BluetoothSelectDevicesFree
@ stub BluetoothSendAuthenticationResponse
@ stub BluetoothSetServiceState
@ stub BluetoothUnregisterAuthentication
@ stdcall -import BluetoothUnregisterAuthentication(long)
@ stub BluetoothUpdateDeviceRecord
#@ stub CPlApplet
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