summaryrefslogtreecommitdiff
path: root/gusb/gusb-endpoint.h
blob: c642d324ea9e8861536ebcdb9c74d56b93be7032 (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
/* -*- 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