mirror of
https://gitlab.uni-freiburg.de/opensourcevdi/spice-gtk
synced 2025-12-28 16:14:36 +00:00
This reverts commit eba83a7056.
This is breaking build in linux as it relies on the actual GUdevClient
API. Let's simply revert and find a different way to get the error.
Signed-off-by: Victor Toso <victortoso@redhat.com>
Acked-by: Jonathon Jongsma <jjongsma@redhat.com>
111 lines
3.6 KiB
C
111 lines
3.6 KiB
C
/* -*- Mode: C; c-basic-offset: 4; indent-tabs-mode: nil -*- */
|
|
/*
|
|
Copyright (C) 2012 Red Hat, Inc.
|
|
|
|
Red Hat Authors:
|
|
Arnon Gilboa <agilboa@redhat.com>
|
|
Uri Lublin <uril@redhat.com>
|
|
|
|
This library is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU Lesser General Public
|
|
License as published by the Free Software Foundation; either
|
|
version 2.1 of the License, or (at your option) any later version.
|
|
|
|
This library is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
Lesser General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Lesser General Public
|
|
License along with this library; if not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
#ifndef __WIN_USB_DEV_H__
|
|
#define __WIN_USB_DEV_H__
|
|
|
|
#include <gtk/gtk.h>
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
/* GUdevDevice */
|
|
|
|
#define G_UDEV_TYPE_DEVICE (g_udev_device_get_type())
|
|
#define G_UDEV_DEVICE(o) (G_TYPE_CHECK_INSTANCE_CAST((o), G_UDEV_TYPE_DEVICE, GUdevDevice))
|
|
#define G_UDEV_DEVICE_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), G_UDEV_TYPE_DEVICE, GUdevDeviceClass))
|
|
#define G_UDEV_IS_DEVICE(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), G_UDEV_TYPE_DEVICE))
|
|
#define G_UDEV_IS_DEVICE_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE((k), G_UDEV_TYPE_DEVICE))
|
|
#define G_UDEV_DEVICE_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS((o), G_UDEV_TYPE_DEVICE, GUdevDeviceClass))
|
|
|
|
typedef struct _GUdevDevice GUdevDevice;
|
|
typedef struct _GUdevDeviceClass GUdevDeviceClass;
|
|
typedef struct _GUdevDevicePrivate GUdevDevicePrivate;
|
|
|
|
struct _GUdevDevice
|
|
{
|
|
GObject parent;
|
|
GUdevDevicePrivate *priv;
|
|
};
|
|
|
|
struct _GUdevDeviceClass
|
|
{
|
|
GObjectClass parent_class;
|
|
};
|
|
|
|
/* GUdevClient */
|
|
|
|
#define G_UDEV_TYPE_CLIENT (g_udev_client_get_type())
|
|
#define G_UDEV_CLIENT(o) (G_TYPE_CHECK_INSTANCE_CAST((o), G_UDEV_TYPE_CLIENT, GUdevClient))
|
|
#define G_UDEV_CLIENT_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), G_UDEV_TYPE_CLIENT, GUdevClientClass))
|
|
#define G_UDEV_IS_CLIENT(o) (G_TYPE_CHECK_INSTANCE_TYPE((o), G_UDEV_TYPE_CLIENT))
|
|
#define G_UDEV_IS_CLIENT_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE((k), G_UDEV_TYPE_CLIENT))
|
|
#define G_UDEV_CLIENT_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS((o), G_UDEV_TYPE_CLIENT, GUdevClientClass))
|
|
|
|
typedef struct _GUdevClient GUdevClient;
|
|
typedef struct _GUdevClientClass GUdevClientClass;
|
|
typedef struct _GUdevClientPrivate GUdevClientPrivate;
|
|
|
|
struct _GUdevClient
|
|
{
|
|
GObject parent;
|
|
|
|
GUdevClientPrivate *priv;
|
|
};
|
|
|
|
struct _GUdevClientClass
|
|
{
|
|
GObjectClass parent_class;
|
|
|
|
/* signals */
|
|
void (*uevent)(GUdevClient *client, const gchar *action, GUdevDevice *device);
|
|
};
|
|
|
|
GType g_udev_client_get_type(void) G_GNUC_CONST;
|
|
GUdevClient *g_udev_client_new(const gchar* const *subsystems);
|
|
GList *g_udev_client_query_by_subsystem(GUdevClient *client, const gchar *subsystem);
|
|
|
|
GType g_udev_device_get_type(void) G_GNUC_CONST;
|
|
const gchar *g_udev_device_get_property(GUdevDevice *udev, const gchar *property);
|
|
const gchar *g_udev_device_get_sysfs_attr(GUdevDevice *udev, const gchar *attr);
|
|
|
|
GQuark g_udev_client_error_quark(void);
|
|
#define G_UDEV_CLIENT_ERROR g_udev_client_error_quark()
|
|
|
|
/**
|
|
* GUdevClientError:
|
|
* @G_UDEV_CLIENT_ERROR_FAILED: generic error code
|
|
* @G_UDEV_CLIENT_LIBUSB_FAILED: a libusb call failed
|
|
* @G_UDEV_CLIENT_WINAPI_FAILED: a winapi call failed
|
|
*
|
|
* Error codes returned by spice-client API.
|
|
*/
|
|
typedef enum
|
|
{
|
|
G_UDEV_CLIENT_ERROR_FAILED = 1,
|
|
G_UDEV_CLIENT_LIBUSB_FAILED,
|
|
G_UDEV_CLIENT_WINAPI_FAILED
|
|
} GUdevClientError;
|
|
|
|
|
|
G_END_DECLS
|
|
|
|
#endif /* __WIN_USB_DEV_H__ */
|