File: gusb-interface.h

package info (click to toggle)
libgusb 0.4.9-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 572 kB
  • sloc: ansic: 5,602; xml: 206; python: 84; sh: 34; makefile: 19; javascript: 4
file content (39 lines) | stat: -rw-r--r-- 1,019 bytes parent folder | download | duplicates (2)
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
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*-
 *
 * Copyright (C) 2015 Richard Hughes <richard@hughsie.com>
 * Copyright (C) 2020 Emmanuel Pacaud <emmanuel@gnome.org>
 *
 * SPDX-License-Identifier: LGPL-2.1+
 */

#pragma once

#include <glib-object.h>

G_BEGIN_DECLS

#define G_USB_TYPE_INTERFACE (g_usb_interface_get_type())
G_DECLARE_FINAL_TYPE(GUsbInterface, g_usb_interface, G_USB, INTERFACE, GObject)

guint8
g_usb_interface_get_length(GUsbInterface *self);
guint8
g_usb_interface_get_kind(GUsbInterface *self);
guint8
g_usb_interface_get_number(GUsbInterface *self);
guint8
g_usb_interface_get_alternate(GUsbInterface *self);
guint8
g_usb_interface_get_class(GUsbInterface *self);
guint8
g_usb_interface_get_subclass(GUsbInterface *self);
guint8
g_usb_interface_get_protocol(GUsbInterface *self);
guint8
g_usb_interface_get_index(GUsbInterface *self);
GBytes *
g_usb_interface_get_extra(GUsbInterface *self);
GPtrArray *
g_usb_interface_get_endpoints(GUsbInterface *self);

G_END_DECLS