Audacious  $Id:Doxyfile42802007-03-2104:39:00Znenolod$
main.h
Go to the documentation of this file.
1 /*
2  * main.h
3  * Copyright 2011 John Lindgren
4  *
5  * This file is part of Audacious.
6  *
7  * Audacious is free software: you can redistribute it and/or modify it under
8  * the terms of the GNU General Public License as published by the Free Software
9  * Foundation, version 2 or version 3 of the License.
10  *
11  * Audacious is distributed in the hope that it will be useful, but WITHOUT ANY
12  * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
13  * A PARTICULAR PURPOSE. See the GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License along with
16  * Audacious. If not, see <http://www.gnu.org/licenses/>.
17  *
18  * The Audacious team does not consider modular code linking to Audacious or
19  * using our public API to be a derived work.
20  */
21 
22 /* Header for all those files that have just one or two public identifiers. */
23 
24 #ifndef _AUDACIOUS_MAIN_H
25 #define _AUDACIOUS_MAIN_H
26 
27 #include <libaudcore/core.h>
28 
29 /* adder.c */
30 void adder_init (void);
31 void adder_cleanup (void);
32 
33 /* art.c */
34 void art_init (void);
35 void art_cleanup (void);
36 
37 /* chardet.c */
38 void chardet_init (void);
39 
40 /* config.c */
41 void config_load (void);
42 void config_save (void);
43 void config_cleanup (void);
44 
45 /* history.c */
46 void history_cleanup (void);
47 
48 /* main.c */
49 extern bool_t headless;
50 bool_t do_autosave (void);
51 
52 /* mpris-signals.c */
53 void mpris_signals_init (void);
54 void mpris_signals_cleanup (void);
55 
56 /* signals.c */
57 void signals_init (void);
58 
59 /* smclient.c */
60 void smclient_init (void);
61 
62 /* ui_albumart.c */
63 char * get_associated_image_file (const char * filename);
64 
65 #endif