diff options
author | Stefano Karapetsas <[email protected]> | 2014-10-24 12:19:06 +0200 |
---|---|---|
committer | Stefano Karapetsas <[email protected]> | 2014-10-24 12:19:06 +0200 |
commit | 768d1200e400f82d64f171577002ec2934a42a93 (patch) | |
tree | a86ad877b4146d4920e54b6ab3fdce0bd4e1112e /plugins/media-keys/cut-n-paste/gvc-mixer-event-role.h | |
parent | 52ac52610c68cc284636adbdff7fda26b654b342 (diff) | |
download | mate-settings-daemon-768d1200e400f82d64f171577002ec2934a42a93.tar.bz2 mate-settings-daemon-768d1200e400f82d64f171577002ec2934a42a93.tar.xz |
media-keys: Remove old cut-n-paste code
Diffstat (limited to 'plugins/media-keys/cut-n-paste/gvc-mixer-event-role.h')
-rw-r--r-- | plugins/media-keys/cut-n-paste/gvc-mixer-event-role.h | 61 |
1 files changed, 0 insertions, 61 deletions
diff --git a/plugins/media-keys/cut-n-paste/gvc-mixer-event-role.h b/plugins/media-keys/cut-n-paste/gvc-mixer-event-role.h deleted file mode 100644 index de62bcd..0000000 --- a/plugins/media-keys/cut-n-paste/gvc-mixer-event-role.h +++ /dev/null @@ -1,61 +0,0 @@ -/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*- - * - * Copyright (C) 2008 Red Hat, Inc. - * - * 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 __GVC_MIXER_EVENT_ROLE_H -#define __GVC_MIXER_EVENT_ROLE_H - -#include <glib-object.h> -#include "gvc-mixer-stream.h" - -#ifdef __cplusplus -extern "C" { -#endif - -#define GVC_TYPE_MIXER_EVENT_ROLE (gvc_mixer_event_role_get_type ()) -#define GVC_MIXER_EVENT_ROLE(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), GVC_TYPE_MIXER_EVENT_ROLE, GvcMixerEventRole)) -#define GVC_MIXER_EVENT_ROLE_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), GVC_TYPE_MIXER_EVENT_ROLE, GvcMixerEventRoleClass)) -#define GVC_IS_MIXER_EVENT_ROLE(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), GVC_TYPE_MIXER_EVENT_ROLE)) -#define GVC_IS_MIXER_EVENT_ROLE_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), GVC_TYPE_MIXER_EVENT_ROLE)) -#define GVC_MIXER_EVENT_ROLE_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), GVC_TYPE_MIXER_EVENT_ROLE, GvcMixerEventRoleClass)) - -typedef struct GvcMixerEventRolePrivate GvcMixerEventRolePrivate; - -typedef struct -{ - GvcMixerStream parent; - GvcMixerEventRolePrivate *priv; -} GvcMixerEventRole; - -typedef struct -{ - GvcMixerStreamClass parent_class; -} GvcMixerEventRoleClass; - -GType gvc_mixer_event_role_get_type (void); - -GvcMixerStream * gvc_mixer_event_role_new (pa_context *context, - const char *device, - GvcChannelMap *channel_map); - -#ifdef __cplusplus -} -#endif - -#endif /* __GVC_MIXER_EVENT_ROLE_H */ |