diff options
| author | Sjoerd Simons <sjoerd@luon.net> | 2013-10-25 21:20:58 +0200 |
|---|---|---|
| committer | Sjoerd Simons <sjoerd@luon.net> | 2013-10-25 21:20:58 +0200 |
| commit | a4256940da049f91bbbea5e53e469a59ea9c10f7 (patch) | |
| tree | 2211c102aea3a33f34f960f48c8b8a55daccd97b /src/nm-device-bt.h | |
| parent | 8d275584fc94f398f0a7c990dcd057533d9a5856 (diff) | |
Imported Upstream version 0.9.8.8 upstream/0.9.8.8
Diffstat (limited to 'src/nm-device-bt.h')
| -rw-r--r-- | src/nm-device-bt.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/nm-device-bt.h b/src/nm-device-bt.h index 9382ee25..82d4bfa7 100644 --- a/src/nm-device-bt.h +++ b/src/nm-device-bt.h @@ -22,6 +22,7 @@ #define NM_DEVICE_BT_H #include <nm-device.h> +#include "nm-bluez-device.h" #include "nm-modem.h" G_BEGIN_DECLS @@ -42,6 +43,7 @@ typedef enum { #define NM_DEVICE_BT_HW_ADDRESS "hw-address" #define NM_DEVICE_BT_NAME "name" #define NM_DEVICE_BT_CAPABILITIES "bt-capabilities" +#define NM_DEVICE_BT_DEVICE "bt-device" typedef struct { NMDevice parent; @@ -57,7 +59,8 @@ typedef struct { GType nm_device_bt_get_type (void); -NMDevice *nm_device_bt_new (const char *udi, +NMDevice *nm_device_bt_new (NMBluezDevice *bt_device, + const char *udi, const char *bdaddr, const char *name, guint32 capabilities, |