bas.h 418 B

12345678910111213141516171819
  1. /* SPDX-License-Identifier: LGPL-2.1-or-later */
  2. /*
  3. *
  4. * BlueZ - Bluetooth protocol stack for Linux
  5. *
  6. * Copyright (C) 2014 Intel Corporation. All rights reserved.
  7. *
  8. *
  9. */
  10. struct bt_bas;
  11. struct bt_bas *bt_bas_new(void *primary);
  12. struct bt_bas *bt_bas_ref(struct bt_bas *bas);
  13. void bt_bas_unref(struct bt_bas *bas);
  14. bool bt_bas_attach(struct bt_bas *bas, void *gatt);
  15. void bt_bas_detach(struct bt_bas *bas);