amp.h 388 B

12345678910111213141516171819
  1. /* SPDX-License-Identifier: LGPL-2.1-or-later */
  2. /*
  3. *
  4. * BlueZ - Bluetooth protocol stack for Linux
  5. *
  6. * Copyright (C) 2011-2012 Intel Corporation
  7. * Copyright (C) 2004-2010 Marcel Holtmann <marcel@holtmann.org>
  8. *
  9. *
  10. */
  11. #include <stdbool.h>
  12. struct bt_amp;
  13. struct bt_amp *bt_amp_new(void);
  14. struct bt_amp *bt_amp_ref(struct bt_amp *amp);
  15. void bt_amp_unref(struct bt_amp *amp);