bta_dm_ci.h 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. /******************************************************************************
  2. *
  3. * Copyright (C) 2006-2012 Broadcom Corporation
  4. *
  5. * Licensed under the Apache License, Version 2.0 (the "License");
  6. * you may not use this file except in compliance with the License.
  7. * You may obtain a copy of the License at:
  8. *
  9. * http://www.apache.org/licenses/LICENSE-2.0
  10. *
  11. * Unless required by applicable law or agreed to in writing, software
  12. * distributed under the License is distributed on an "AS IS" BASIS,
  13. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. * See the License for the specific language governing permissions and
  15. * limitations under the License.
  16. *
  17. ******************************************************************************/
  18. /******************************************************************************
  19. *
  20. * This is the interface file for device mananger call-in functions.
  21. *
  22. ******************************************************************************/
  23. #ifndef BTA_DM_CI_H
  24. #define BTA_DM_CI_H
  25. #include "bta_api.h"
  26. /*****************************************************************************
  27. ** Function Declarations
  28. *****************************************************************************/
  29. #ifdef __cplusplus
  30. extern "C"
  31. {
  32. #endif
  33. /*******************************************************************************
  34. **
  35. ** Function bta_dm_ci_io_req
  36. **
  37. ** Description This function must be called in response to function
  38. ** bta_dm_co_io_req(), if *p_oob_data is set to BTA_OOB_UNKNOWN
  39. ** by bta_dm_co_io_req().
  40. **
  41. ** Returns void
  42. **
  43. *******************************************************************************/
  44. extern void bta_dm_ci_io_req(BD_ADDR bd_addr, tBTA_IO_CAP io_cap,
  45. tBTA_OOB_DATA oob_data, tBTA_AUTH_REQ auth_req);
  46. /*******************************************************************************
  47. **
  48. ** Function bta_dm_ci_rmt_oob
  49. **
  50. ** Description This function must be called in response to function
  51. ** bta_dm_co_rmt_oob() to provide the OOB data associated
  52. ** with the remote device.
  53. **
  54. ** Returns void
  55. **
  56. *******************************************************************************/
  57. extern void bta_dm_ci_rmt_oob(BOOLEAN accept, BD_ADDR bd_addr,
  58. BT_OCTET16 c, BT_OCTET16 r);
  59. /*******************************************************************************
  60. **
  61. ** Function bta_dm_sco_ci_data_ready
  62. **
  63. ** Description This function sends an event to indicating that the phone
  64. ** has SCO data ready..
  65. **
  66. ** Returns void
  67. **
  68. *******************************************************************************/
  69. extern void bta_dm_sco_ci_data_ready(UINT16 event, UINT16 sco_handle);
  70. #ifdef __cplusplus
  71. }
  72. #endif
  73. #endif