Blob: hdp.h
Blob id: 114453493faf1f96275e79c85ffb5fde89410f08
Size: 535 B
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | /* SPDX-License-Identifier: GPL-2.0-or-later */ /* * * BlueZ - Bluetooth protocol stack for Linux * * Copyright (C) 2010 GSyC/LibreSoft, Universidad Rey Juan Carlos. * */ int hdp_adapter_register(struct btd_adapter *btd_adapter); void hdp_adapter_unregister(struct btd_adapter *btd_adapter); int hdp_device_register(struct btd_device *device); void hdp_device_unregister(struct btd_device *device); int hdp_manager_start(void); void hdp_manager_stop(void); gboolean hdp_set_mcl_cb(struct hdp_device *device, GError **err); |