File: gusb-endpoint.h

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

#pragma once

#include <gusb/gusb-device.h>

G_BEGIN_DECLS

#define G_USB_TYPE_ENDPOINT (g_usb_endpoint_get_type())
G_DECLARE_FINAL_TYPE(GUsbEndpoint, g_usb_endpoint, G_USB, ENDPOINT, GObject)

guint8
g_usb_endpoint_get_kind(GUsbEndpoint *self);
guint16
g_usb_endpoint_get_maximum_packet_size(GUsbEndpoint *self);
guint8
g_usb_endpoint_get_polling_interval(GUsbEndpoint *self);
guint8
g_usb_endpoint_get_refresh(GUsbEndpoint *self);
guint8
g_usb_endpoint_get_synch_address(GUsbEndpoint *self);
guint8
g_usb_endpoint_get_address(GUsbEndpoint *self);
guint8
g_usb_endpoint_get_number(GUsbEndpoint *self);
GUsbDeviceDirection
g_usb_endpoint_get_direction(GUsbEndpoint *self);
GBytes *
g_usb_endpoint_get_extra(GUsbEndpoint *self);

G_END_DECLS