a2d_int.h 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. /******************************************************************************
  2. *
  3. * Copyright (C) 2002-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. * 2DP internal header file
  21. *
  22. ******************************************************************************/
  23. #ifndef A2D_INT_H
  24. #define A2D_INT_H
  25. #include "stack/a2d_api.h"
  26. #if (A2D_INCLUDED == TRUE)
  27. /*****************************************************************************
  28. ** Constants
  29. *****************************************************************************/
  30. #define A2D_VERSION 0x0102
  31. /* Number of attributes in A2D SDP record. */
  32. #define A2D_NUM_ATTR 6
  33. /* Number of protocol elements in protocol element list. */
  34. #define A2D_NUM_PROTO_ELEMS 2
  35. /*****************************************************************************
  36. ** Type definitions
  37. *****************************************************************************/
  38. /* Control block used by A2D_FindService(). */
  39. typedef struct {
  40. tA2D_FIND_CBACK *p_cback; /* pointer to application callback */
  41. tSDP_DISCOVERY_DB *p_db; /* pointer to discovery database */
  42. UINT16 service_uuid; /* service UUID of search */
  43. } tA2D_FIND_CB;
  44. typedef struct {
  45. tA2D_FIND_CB find; /* find service control block */
  46. UINT8 trace_level;
  47. UINT16 avdt_sdp_ver; /* AVDTP version */
  48. } tA2D_CB;
  49. #ifdef __cplusplus
  50. extern "C"
  51. {
  52. #endif
  53. /******************************************************************************
  54. ** Main Control Block
  55. *******************************************************************************/
  56. #if A2D_DYNAMIC_MEMORY == FALSE
  57. extern tA2D_CB a2d_cb;
  58. #else
  59. extern tA2D_CB *a2d_cb_ptr;
  60. #define a2d_cb (*a2d_cb_ptr)
  61. #endif
  62. /* Used only for conformance testing */
  63. extern void a2d_set_avdt_sdp_ver (UINT16 avdt_sdp_ver);
  64. #ifdef __cplusplus
  65. }
  66. #endif
  67. #endif ///A2D_INCLUDED == TRUE
  68. #endif /* A2D_INT_H */