1 /*
2  * SPDX-FileCopyrightText: 2015-2021 Espressif Systems (Shanghai) CO LTD
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  */
6 
7 #ifndef ACL_HCI_LINK_INTERFACE_H
8 #define ACL_HCI_LINK_INTERFACE_H
9 
10 #include "bt_common.h"
11 
12 void btm_acl_connected(BD_ADDR bda, UINT16 handle, UINT8 link_type, UINT8 enc_mode, UINT8 status);
13 void btm_acl_disconnected(UINT16 handle, UINT8 reason);
14 
15 #endif /* ACL_HCI_LINK_INTERFACE_H */
16