comparison src/audacious/ui_plugin_menu.h @ 3307:b5b2573db5c2 trunk

add required header for plugin-customized menus
author Giacomo Lozito <james@develia.org>
date Fri, 10 Aug 2007 17:09:36 +0200
parents
children 3a3f43afd9a0
comparison
equal deleted inserted replaced
3306:404ffedef3e1 3307:b5b2573db5c2
1 /* Audacious - Cross-platform multimedia player
2 * Copyright (C) 2005-2007 Audacious development team.
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; under version 3 of the License.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses>.
15 *
16 * The Audacious team does not consider modular code linking to
17 * Audacious or using our public API to be a derived work.
18 */
19
20 /* these functions are currently implemented in ui_manager.c */
21
22 #ifndef AUD_UIPLUGINMENU_H
23 #define AUD_UIPLUGINMENU_H
24
25
26 #include <glib.h>
27 #include <glib/gi18n.h>
28 #include <gtk/gtk.h>
29
30
31 #define AUDACIOUS_MENU_MAIN 0
32 #define AUDACIOUS_MENU_PLAYLIST 1
33
34 gint audacious_menu_plugin_item_add( gint , GtkWidget * );
35 gint audacious_menu_plugin_item_remove( gint , GtkWidget * );
36
37
38 #endif /* AUD_UIPLUGINMENU_H */