summaryrefslogtreecommitdiff
path: root/gusb/gusb-device-list.h
blob: 95c442311c5eb68e91c71e786aaf71c6ce0e6b88 (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
/* -*- 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 Richard Hughes <richard@hughsie.com>
 *
 * SPDX-License-Identifier: LGPL-2.1+
 */

#pragma once

#include <gusb/gusb-context.h>

G_BEGIN_DECLS

#define G_USB_TYPE_DEVICE_LIST (g_usb_device_list_get_type())

G_DECLARE_DERIVABLE_TYPE(GUsbDeviceList, g_usb_device_list, G_USB, DEVICE_LIST, GObject)

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];
};

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