summaryrefslogtreecommitdiff
path: root/android/audio-msg.h
diff options
context:
space:
mode:
authorLuiz Augusto von Dentz <luiz.von.dentz@intel.com>2013-12-27 14:58:54 +0200
committerLuiz Augusto von Dentz <luiz.von.dentz@intel.com>2014-01-07 13:37:53 +0200
commitdfb5f89f632eca5cba82d0d500d8bf6461b7a523 (patch)
tree6671969db04f25b1a9963354ff16e24a9591150b /android/audio-msg.h
parent3d2f0eeaf01a4ca1fb7a8b8b87900d9495d14036 (diff)
downloadbluez-dfb5f89f632eca5cba82d0d500d8bf6461b7a523.tar.gz
android/A2DP: Add audio close command/response struct
This adds the definitions to audio close command and response.
Diffstat (limited to 'android/audio-msg.h')
-rw-r--r--android/audio-msg.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/android/audio-msg.h b/android/audio-msg.h
index 158a2ab36..6ac1fffe4 100644
--- a/android/audio-msg.h
+++ b/android/audio-msg.h
@@ -52,3 +52,8 @@ struct audio_cmd_open {
struct audio_rsp_open {
uint8_t id;
} __attribute__((packed));
+
+#define AUDIO_OP_CLOSE 0x02
+struct audio_cmd_close {
+ uint8_t id;
+} __attribute__((packed));