blob: cbc735b89e485db60bba26d7f2f373adb52a3b0f (
plain)
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
|
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*-
*
* Copyright (C) 2011 Hans de Goede <hdegoede@redhat.com>
* Copyright (C) 2011-2014 Richard Hughes <richard@hughsie.com>
*
* SPDX-License-Identifier: LGPL-2.1+
*/
#pragma once
#include <glib-object.h>
#include <gusb/gusb-context.h>
#include <gusb/gusb-device.h>
G_BEGIN_DECLS
#define G_USB_TYPE_DEVICE_LIST (g_usb_device_list_get_type ())
#define G_USB_DEVICE_LIST(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), G_USB_TYPE_DEVICE_LIST, GUsbDeviceList))
#define G_USB_IS_DEVICE_LIST(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), G_USB_TYPE_DEVICE_LIST))
typedef struct _GUsbDeviceListPrivate GUsbDeviceListPrivate;
typedef struct _GUsbDeviceList GUsbDeviceList;
typedef struct _GUsbDeviceListClass GUsbDeviceListClass;
struct _GUsbDeviceList
{
GObject parent;
GUsbDeviceListPrivate *priv;
};
struct _GUsbDeviceListClass
{
GObjectClass parent_class;
/* Signals */
void (*device_added) (GUsbDeviceList *list,
GUsbDevice *device);
void (*device_removed) (GUsbDeviceList *list,
GUsbDevice *device);
/*< private >*/
/*
* If adding fields to this struct, remove corresponding
* amount of padding to avoid changing overall struct size
*/
gchar _gusb_reserved[64];
};
GType g_usb_device_list_get_type (void);
G_DEPRECATED_FOR(g_usb_context_new)
GUsbDeviceList *g_usb_device_list_new (GUsbContext *context);
G_DEPRECATED
void g_usb_device_list_coldplug (GUsbDeviceList *list);
G_DEPRECATED_FOR(g_usb_context_get_devices)
GPtrArray *g_usb_device_list_get_devices (GUsbDeviceList *list);
G_DEPRECATED_FOR(g_usb_context_find_by_bus_address)
GUsbDevice *g_usb_device_list_find_by_bus_address (GUsbDeviceList *list,
guint8 bus,
guint8 address,
GError **error);
G_DEPRECATED_FOR(g_usb_context_find_by_vid_pid)
GUsbDevice *g_usb_device_list_find_by_vid_pid (GUsbDeviceList *list,
guint16 vid,
guint16 pid,
GError **error);
G_END_DECLS
|