[go: up one dir, main page]

File: gusb-endpoint.h

package info (click to toggle)
libgusb 0.3.5-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 456 kB
  • sloc: ansic: 3,453; python: 84; xml: 25; makefile: 10; sh: 8
file content (29 lines) | stat: -rw-r--r-- 1,043 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
/* -*- 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 <glib-object.h>
#include <gio/gio.h>
#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 *endpoint);
guint16			g_usb_endpoint_get_maximum_packet_size 	(GUsbEndpoint *endpoint);
guint8 			g_usb_endpoint_get_polling_interval	(GUsbEndpoint *endpoint);
guint8 			g_usb_endpoint_get_refresh		(GUsbEndpoint *endpoint);
guint8 			g_usb_endpoint_get_synch_address	(GUsbEndpoint *endpoint);
guint8		 	g_usb_endpoint_get_address		(GUsbEndpoint *endpoint);
guint8		 	g_usb_endpoint_get_number		(GUsbEndpoint *endpoint);
GUsbDeviceDirection	g_usb_endpoint_get_direction		(GUsbEndpoint *endpoint);
GBytes *		g_usb_endpoint_get_extra		(GUsbEndpoint *endpoint);

G_END_DECLS