diff options
author | Etan Cohen <etancohen@google.com> | 2015-03-31 10:41:53 -0700 |
---|---|---|
committer | Etan Cohen <etancohen@google.com> | 2015-03-31 10:41:53 -0700 |
commit | e1a9e52ff59d36bd1bb5b7b3a02fafba6394edfe (patch) | |
tree | 0a82ebb8b0be6acf27f7cbf38a44c9f70425e141 /stack/a2dp/a2d_int.h | |
parent | dd05445e57161ac40ae8b37252ae9f453bb31e85 (diff) | |
parent | f7f839985b3931682363d2ef3b7c5cae55a842ee (diff) | |
download | android_system_bt-e1a9e52ff59d36bd1bb5b7b3a02fafba6394edfe.tar.gz android_system_bt-e1a9e52ff59d36bd1bb5b7b3a02fafba6394edfe.tar.bz2 android_system_bt-e1a9e52ff59d36bd1bb5b7b3a02fafba6394edfe.zip |
Merge commit 'f7f839985b3931682363d2ef3b7c5cae55a842ee' into merge
Change-Id: Iaaec1ea0bf3009b7e32a9a60f697631a3f56e889
Diffstat (limited to 'stack/a2dp/a2d_int.h')
-rw-r--r-- | stack/a2dp/a2d_int.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/stack/a2dp/a2d_int.h b/stack/a2dp/a2d_int.h index 4aaa08375..84e109b99 100644 --- a/stack/a2dp/a2d_int.h +++ b/stack/a2dp/a2d_int.h @@ -67,14 +67,14 @@ extern "C" ** Main Control Block *******************************************************************************/ #if A2D_DYNAMIC_MEMORY == FALSE -A2D_API extern tA2D_CB a2d_cb; +extern tA2D_CB a2d_cb; #else -A2D_API extern tA2D_CB *a2d_cb_ptr; +extern tA2D_CB *a2d_cb_ptr; #define a2d_cb (*a2d_cb_ptr) #endif /* Used only for conformance testing */ -A2D_API extern void a2d_set_avdt_sdp_ver (UINT16 avdt_sdp_ver); +extern void a2d_set_avdt_sdp_ver (UINT16 avdt_sdp_ver); #ifdef __cplusplus } |