File: gusb-device-private.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 (22 lines) | stat: -rw-r--r-- 508 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
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*-
 *
 * Copyright (C) 2011 Hans de Goede <hdegoede@redhat.com>
 *
 * SPDX-License-Identifier: LGPL-2.1+
 */

#pragma once

#include <gusb/gusb-device.h>

G_BEGIN_DECLS

GUsbDevice	*_g_usb_device_new		(GUsbContext	*context,
						 libusb_device	*device,
						 GError	**error);

libusb_device	*_g_usb_device_get_device	(GUsbDevice	*device);
gboolean	 _g_usb_device_open_internal	(GUsbDevice	*device,
						 GError		**error);

G_END_DECLS