comparison src/skins/plugin.h @ 2572:d0daee216c8d

stub (really incomplete) for skin engine plugin
author Tomasz Mon <desowin@gmail.com>
date Sun, 18 May 2008 14:20:51 +0200
parents
children 8fba3fbf1a0f
comparison
equal deleted inserted replaced
2571:3a59f3d578f1 2572:d0daee216c8d
1 /*
2 * Audacious - a cross-platform multimedia player
3 * Copyright (c) 2008 Tomasz Moń
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; under version 3 of the License.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program. If not, see <http://www.gnu.org/licenses>.
16 *
17 * The Audacious team does not consider modular code linking to
18 * Audacious or using our public API to be a derived work.
19 */
20
21 #ifndef PLUGIN_SKINS_H
22 #define PLUGIN_SKINS_H
23
24 #define _(String) gettext(String)
25 #define N_(String) (String)
26
27 #include <glib.h>
28 #include <audacious/plugin.h>
29
30 extern GtkWidget *mainwin;
31
32 void skins_init(void);
33 void skins_cleanup(void);
34 void skins_configure(void);
35 void skins_about(void);
36
37 #endif