1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
42
43
44
49
50
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
/* ... */
/* ... */
#ifndef A2D_INT_H
#define A2D_INT_H
#include "stack/a2d_api.h"
#if (A2D_INCLUDED == TRUE)
/* ... */
#define A2D_NUM_ATTR 6
#define A2D_NUM_PROTO_ELEMS 2
/* ... */
typedef struct {
tA2D_FIND_CBACK *p_cback;
tSDP_DISCOVERY_DB *p_db;
UINT16 service_uuid;
}{...} tA2D_FIND_CB;
typedef struct {
tA2D_FIND_CB find;
UINT8 trace_level;
UINT16 avdt_sdp_ver;
UINT16 a2dp_sdp_ver;
}{...} tA2D_CB;
#ifdef __cplusplus
extern "C"
{
#endif
#if A2D_DYNAMIC_MEMORY == FALSE
extern tA2D_CB a2d_cb;
#else
extern tA2D_CB *a2d_cb_ptr;
#define a2d_cb (*a2d_cb_ptr)
#endif
#ifdef __cplusplus
}
#endif
#endif
#endif