diff options
author | Charles Kerr <charles.kerr@canonical.com> | 2013-08-23 14:35:34 +0000 |
---|---|---|
committer | Tarmac <> | 2013-08-23 14:35:34 +0000 |
commit | bf7ba1f44ee32ad9137e84ea031e0339021ee024 (patch) | |
tree | e75489ebd1a8cea46fdd9b8e2bf4725f397a435e | |
parent | 43c384d32471b1d8ce96e40e5c6b3ed262c12d0f (diff) | |
parent | 8b2bc6c8041b6cf93b8c8967be2021cd5ab0994d (diff) | |
download | ayatana-indicator-bluetooth-bf7ba1f44ee32ad9137e84ea031e0339021ee024.tar.gz ayatana-indicator-bluetooth-bf7ba1f44ee32ad9137e84ea031e0339021ee024.tar.bz2 ayatana-indicator-bluetooth-bf7ba1f44ee32ad9137e84ea031e0339021ee024.zip |
Since we're not using the gnome-bluetooth vapi file, we shouldn't bundle it.
Approved by Ted Gould, PS Jenkins bot.
-rw-r--r-- | Makefile.am | 1 | ||||
-rw-r--r-- | vapi/gnome-bluetooth-1.0.vapi | 82 |
2 files changed, 0 insertions, 83 deletions
diff --git a/Makefile.am b/Makefile.am index ef681b3..4772941 100644 --- a/Makefile.am +++ b/Makefile.am @@ -4,7 +4,6 @@ EXTRA_DIST = \ autogen.sh \ NEWS \ vapi/config.vapi \ - vapi/gnome-bluetooth-1.0.vapi \ vapi/rfkill.vapi DISTCHECK_CONFIGURE_FLAGS = --enable-localinstall diff --git a/vapi/gnome-bluetooth-1.0.vapi b/vapi/gnome-bluetooth-1.0.vapi deleted file mode 100644 index 6d6aa09..0000000 --- a/vapi/gnome-bluetooth-1.0.vapi +++ /dev/null @@ -1,82 +0,0 @@ -[CCode (cprefix = "Bluetooth", lower_case_cprefix = "bluetooth_")] -namespace GnomeBluetooth -{ - -[CCode (cheader_filename = "bluetooth-client.h")] -public class Client : GLib.Object -{ - public Client (); - public Gtk.TreeModel model { get; } - public Gtk.TreeModel adapter_model { get; } - public Gtk.TreeModel device_model { get; } - [CCode (finish_function = "bluetooth_client_connect_service_finish")] - public async bool connect_service (string device, bool connect, GLib.Cancellable? cancellable = null) throws GLib.Error; -} - -[CCode (cheader_filename = "bluetooth-enums.h", cprefix = "BLUETOOTH_COLUMN_")] -public enum Column -{ - PROXY, - ADDRESS, - ALIAS, - NAME, - TYPE, - ICON, - DEFAULT, - PAIRED, - TRUSTED, - CONNECTED, - DISCOVERABLE, - DISCOVERING, - LEGACYPAIRING, - POWERED, - SERVICES, - UUIDS -} - -[CCode (cheader_filename = "bluetooth-enums.h", cprefix = "BLUETOOTH_TYPE_")] -public enum Type -{ - ANY, - PHONE, - MODEM, - COMPUTER, - NETWORK, - HEADSET, - HEADPHONES, - OTHER_AUDIO, - KEYBOARD, - MOUSE, - CAMERA, - PRINTER, - JOYPAD, - TABLET, - VIDEO -} - -[CCode (cheader_filename = "bluetooth-utils.h")] -public void browse_address (GLib.Object? object, string address, uint timestamp, GLib.AsyncReadyCallback? callback); - -[CCode (cheader_filename = "bluetooth-utils.h")] -public void send_to_address (string address, string alias); - -[CCode (cheader_filename = "bluetooth-killswitch.h", cprefix = "BLUETOOTH_KILLSWITCH_STATE_")] -public enum KillswitchState -{ - NO_ADAPTER, - SOFT_BLOCKED, - UNBLOCKED, - HARD_BLOCKED -} - -[CCode (cheader_filename = "bluetooth-killswitch.h")] -public class Killswitch : GLib.Object -{ - public Killswitch (); - public signal void state_changed (KillswitchState state); - public bool has_killswitches (); - public KillswitchState state { get; set; } - public unowned string state_to_string (); -} - -} |