/usr/include/gnome-bluetooth/bluetooth-killswitch.h is in libgnome-bluetooth-dev 3.8.2.1-0ubuntu4.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 | /*
*
* BlueZ - Bluetooth protocol stack for Linux
*
* Copyright (C) 2005-2008 Marcel Holtmann <marcel@holtmann.org>
* Copyright (C) 2006-2009 Bastien Nocera <hadess@hadess.net>
*
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*
*/
#ifndef __BLUETOOTH_KILLSWITCH_H
#define __BLUETOOTH_KILLSWITCH_H
#include <glib-object.h>
G_BEGIN_DECLS
typedef enum {
BLUETOOTH_KILLSWITCH_STATE_NO_ADAPTER = -1,
BLUETOOTH_KILLSWITCH_STATE_SOFT_BLOCKED = 0,
BLUETOOTH_KILLSWITCH_STATE_UNBLOCKED,
BLUETOOTH_KILLSWITCH_STATE_HARD_BLOCKED
} BluetoothKillswitchState;
#define BLUETOOTH_TYPE_KILLSWITCH (bluetooth_killswitch_get_type())
#define BLUETOOTH_KILLSWITCH(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), \
BLUETOOTH_TYPE_KILLSWITCH, BluetoothKillswitch))
#define BLUETOOTH_KILLSWITCH_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass), \
BLUETOOTH_TYPE_KILLSWITCH, BluetoothKillswitchClass))
#define BLUETOOTH_IS_KILLSWITCH(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), \
BLUETOOTH_TYPE_KILLSWITCH))
#define BLUETOOTH_IS_KILLSWITCH_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass), \
BLUETOOTH_TYPE_KILLSWITCH))
#define BLUETOOTH_GET_KILLSWITCH_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS((obj), \
BLUETOOTH_TYPE_KILLSWITCH, BluetoothKillswitchClass))
typedef struct _BluetoothKillswitch BluetoothKillswitch;
typedef struct _BluetoothKillswitchClass BluetoothKillswitchClass;
typedef struct _BluetoothKillswitchPrivate BluetoothKillswitchPrivate;
struct _BluetoothKillswitch {
GObject parent;
BluetoothKillswitchPrivate *priv;
};
struct _BluetoothKillswitchClass {
GObjectClass parent_class;
void (*state_changed) (BluetoothKillswitch *killswitch, BluetoothKillswitchState state);
};
GType bluetooth_killswitch_get_type(void);
BluetoothKillswitch * bluetooth_killswitch_new (void);
gboolean bluetooth_killswitch_has_killswitches (BluetoothKillswitch *killswitch);
void bluetooth_killswitch_set_state (BluetoothKillswitch *killswitch,
BluetoothKillswitchState state);
BluetoothKillswitchState bluetooth_killswitch_get_state (BluetoothKillswitch *killswitch);
const char *bluetooth_killswitch_state_to_string (BluetoothKillswitchState state);
G_END_DECLS
#endif /* __BLUETOOTH_KILLSWITCH_H */
|