File: bluetooth-device.h

package info (click to toggle)
gnome-bluetooth 47.1-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,728 kB
  • sloc: ansic: 6,846; python: 561; xml: 113; sh: 46; makefile: 21
file content (17 lines) | stat: -rw-r--r-- 515 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/*
 * Copyright (C) 2021 Bastien Nocera <hadess@hadess.net>
 *
 * SPDX-License-Identifier: LGPL-2.1-or-later
 */

#pragma once

#include <glib-object.h>
#include <bluetooth-enums.h>

#define BLUETOOTH_TYPE_DEVICE (bluetooth_device_get_type())
G_DECLARE_FINAL_TYPE (BluetoothDevice, bluetooth_device, BLUETOOTH, DEVICE, GObject)

const char *bluetooth_device_get_object_path (BluetoothDevice *device);
void bluetooth_device_dump (BluetoothDevice *device);
char *bluetooth_device_to_string (BluetoothDevice *device);