/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- * * Copyright (C) 2009 Richard Hughes * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program 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 General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA * */ #ifndef __DKP_INPUT_H__ #define __DKP_INPUT_H__ #include #include "up-daemon.h" G_BEGIN_DECLS #define DKP_TYPE_INPUT (dkp_input_get_type ()) #define DKP_INPUT(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), DKP_TYPE_INPUT, DkpInput)) #define DKP_INPUT_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), DKP_TYPE_INPUT, DkpInputClass)) #define DKP_IS_INPUT(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), DKP_TYPE_INPUT)) #define DKP_IS_INPUT_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), DKP_TYPE_INPUT)) #define DKP_INPUT_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), DKP_TYPE_INPUT, DkpInputClass)) typedef struct DkpInputPrivate DkpInputPrivate; typedef struct { GObject parent; DkpInputPrivate *priv; } DkpInput; typedef struct { GObjectClass parent_class; } DkpInputClass; GType dkp_input_get_type (void); DkpInput *dkp_input_new (void); gboolean dkp_input_coldplug (DkpInput *input, DkpDaemon *daemon, GUdevDevice *d); G_END_DECLS #endif /* __DKP_INPUT_H__ */