Audacious  $Id:Doxyfile42802007-03-2104:39:00Znenolod$
main.h
Go to the documentation of this file.
00001 /*
00002  * main.h
00003  * Copyright 2011 John Lindgren
00004  *
00005  * This file is part of Audacious.
00006  *
00007  * Audacious is free software: you can redistribute it and/or modify it under
00008  * the terms of the GNU General Public License as published by the Free Software
00009  * Foundation, version 2 or version 3 of the License.
00010  *
00011  * Audacious is distributed in the hope that it will be useful, but WITHOUT ANY
00012  * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
00013  * A PARTICULAR PURPOSE. See the GNU General Public License for more details.
00014  *
00015  * You should have received a copy of the GNU General Public License along with
00016  * Audacious. If not, see <http://www.gnu.org/licenses/>.
00017  *
00018  * The Audacious team does not consider modular code linking to Audacious or
00019  * using our public API to be a derived work.
00020  */
00021 
00022 /* Header for all those files that have just one or two public identifiers. */
00023 
00024 #ifndef _AUDACIOUS_MAIN_H
00025 #define _AUDACIOUS_MAIN_H
00026 
00027 #include <libaudcore/core.h>
00028 
00029 /* adder.c */
00030 void adder_init (void);
00031 void adder_cleanup (void);
00032 
00033 /* art.c */
00034 void art_init (void);
00035 void art_cleanup (void);
00036 
00037 /* chardet.c */
00038 void chardet_init (void);
00039 
00040 /* config.c */
00041 void config_load (void);
00042 void config_save (void);
00043 void config_cleanup (void);
00044 
00045 /* history.c */
00046 void history_cleanup (void);
00047 
00048 /* main.c */
00049 extern bool_t headless;
00050 bool_t do_autosave (void);
00051 
00052 /* mpris-signals.c */
00053 void mpris_signals_init (void);
00054 void mpris_signals_cleanup (void);
00055 
00056 /* signals.c */
00057 void signals_init (void);
00058 
00059 /* smclient.c */
00060 void smclient_init (void);
00061 
00062 /* ui_albumart.c */
00063 char * get_associated_image_file (const char * filename);
00064 
00065 #endif