control.h 647 B

1234567891011121314151617181920212223
  1. /* SPDX-License-Identifier: GPL-2.0-or-later */
  2. /*
  3. *
  4. * BlueZ - Bluetooth protocol stack for Linux
  5. *
  6. * Copyright (C) 2006-2010 Nokia Corporation
  7. * Copyright (C) 2004-2010 Marcel Holtmann <marcel@holtmann.org>
  8. *
  9. *
  10. */
  11. #define AUDIO_CONTROL_INTERFACE "org.bluez.MediaControl1"
  12. struct btd_service;
  13. int control_init_target(struct btd_service *service);
  14. int control_init_remote(struct btd_service *service);
  15. void control_unregister(struct btd_service *service);
  16. int control_connect(struct btd_service *service);
  17. int control_disconnect(struct btd_service *service);
  18. int control_set_player(struct btd_service *service, const char *path);