summaryrefslogtreecommitdiff
path: root/emulator/amp.h
diff options
context:
space:
mode:
authorMarcel Holtmann <marcel@holtmann.org>2013-10-09 11:03:42 -0700
committerMarcel Holtmann <marcel@holtmann.org>2013-10-09 11:03:42 -0700
commite6e6e843403e4fe79b260dcf4513034275988218 (patch)
tree9e72934c810a566e48e8217d57527d4ae82cfc1c /emulator/amp.h
parent6b8ffc30c4c13ab1950ca7882c31d76c88bc8a28 (diff)
downloadbluez-e6e6e843403e4fe79b260dcf4513034275988218.tar.gz
emulator: Add support for AMP controller emulation
Diffstat (limited to 'emulator/amp.h')
-rw-r--r--emulator/amp.h32
1 files changed, 32 insertions, 0 deletions
diff --git a/emulator/amp.h b/emulator/amp.h
new file mode 100644
index 000000000..189dfb7d4
--- /dev/null
+++ b/emulator/amp.h
@@ -0,0 +1,32 @@
+/*
+ *
+ * BlueZ - Bluetooth protocol stack for Linux
+ *
+ * Copyright (C) 2011-2012 Intel Corporation
+ * Copyright (C) 2004-2010 Marcel Holtmann <marcel@holtmann.org>
+ *
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+ *
+ */
+
+#include <stdbool.h>
+
+struct bt_amp;
+
+struct bt_amp *bt_amp_new(void);
+
+struct bt_amp *bt_amp_ref(struct bt_amp *amp);
+void bt_amp_unref(struct bt_amp *amp);