Blame telepathy-account-widgets/tp-account-widgets/totem-subtitle-encoding.h

Packit 79f644
/*
Packit 79f644
 * Copyright (C) 2001-2006 Bastien Nocera <hadess@hadess.net>
Packit 79f644
 *
Packit 79f644
 * encoding list copied from gnome-terminal/encoding.c
Packit 79f644
 *
Packit 79f644
 * This program is free software; you can redistribute it and/or
Packit 79f644
 * modify it under the terms of the GNU Lesser General Public
Packit 79f644
 * License as published by the Free Software Foundation; either
Packit 79f644
 * version 2.1 of the License, or (at your option) any later version.
Packit 79f644
 *
Packit 79f644
 * This program is distributed in the hope that it will be useful,
Packit 79f644
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit 79f644
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit 79f644
 * Lesser General Public License for more details.
Packit 79f644
 *
Packit 79f644
 * You should have received a copy of the GNU Lesser General Public
Packit 79f644
 * License along with this library; if not, write to the Free Software
Packit 79f644
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301 USA
Packit 79f644
 *
Packit 79f644
 * The Totem project hereby grant permission for non-gpl compatible GStreamer
Packit 79f644
 * plugins to be used and distributed together with GStreamer and Totem. This
Packit 79f644
 * permission are above and beyond the permissions granted by the GPL license
Packit 79f644
 * Totem is covered by.
Packit 79f644
 *
Packit 79f644
 * Monday 7th February 2005: Christian Schaller: Add exception clause.
Packit 79f644
 * See license_change file for details.
Packit 79f644
 *
Packit 79f644
 */
Packit 79f644
Packit 79f644
/* Encoding stuff */
Packit 79f644
Packit 79f644
#ifndef TOTEM_SUBTITLE_ENCODING_H
Packit 79f644
#define TOTEM_SUBTITLE_ENCODING_H
Packit 79f644
Packit 79f644
#include <gtk/gtk.h>
Packit 79f644
Packit 79f644
void totem_subtitle_encoding_init (GtkComboBox *combo);
Packit 79f644
void totem_subtitle_encoding_set (GtkComboBox *combo, const char *encoding);
Packit 79f644
const char * totem_subtitle_encoding_get_selected (GtkComboBox *combo);
Packit 79f644
Packit 79f644
#endif /* SUBTITLE_ENCODING_H */