diff options
Diffstat (limited to 'btif/include/btif_dm.h')
-rw-r--r-- | btif/include/btif_dm.h | 32 |
1 files changed, 14 insertions, 18 deletions
diff --git a/btif/include/btif_dm.h b/btif/include/btif_dm.h index 71f2c5e..64af77a 100644 --- a/btif/include/btif_dm.h +++ b/btif/include/btif_dm.h @@ -45,28 +45,27 @@ * ************************************************************************************/ -/************************************************************************************ - * - * Filename: btif_dm.h - * - * Description: - * - ***********************************************************************************/ - #ifndef BTIF_DM_H #define BTIF_DM_H -/************************************************************************************ +/******************************************************************************* ** Functions -************************************************************************************/ +********************************************************************************/ -/******************************************************************************* -** -** Description BTIF callback to switch context from bte to btif -** -*******************************************************************************/ +/** + * BTIF callback to switch context from bte to btif + */ void bte_dm_evt(tBTA_DM_SEC_EVT event, tBTA_DM_SEC *p_data); +/** + * Notify BT disable being initiated. DM may chose to abort + * pending commands, like pairing + */ +void btif_dm_on_disable(void); + +/** + * Out-of-band functions + */ #if (BTM_OOB_INCLUDED == TRUE) void btif_dm_set_oob_for_io_req(tBTA_OOB_DATA *p_oob_data); #ifdef BTIF_DM_OOB_TEST @@ -76,7 +75,4 @@ BOOLEAN btif_dm_proc_rmt_oob(BD_ADDR bd_addr, BT_OCTET16 p_c, BT_OCTET16 p_r); #endif /* BTIF_DM_OOB_TEST */ #endif /* BTM_OOB_INCLUDED */ -/* Notify BT disable being initiated. DM may chose to abort pending commands, like pairing*/ -void btif_dm_on_disable(void); - #endif |