Blob: le.h
Blob id: 21d2b4828a0e9b255ec20e418c79dc3beb31ae01
Size: 378 B
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | /* SPDX-License-Identifier: LGPL-2.1-or-later */ /* * * BlueZ - Bluetooth protocol stack for Linux * * Copyright (C) 2011-2012 Intel Corporation * Copyright (C) 2004-2010 Marcel Holtmann <marcel@holtmann.org> * * */ #include <stdbool.h> struct bt_le; struct bt_le *bt_le_new(void); struct bt_le *bt_le_ref(struct bt_le *le); void bt_le_unref(struct bt_le *le); |