Audacious
$Id:Doxyfile42802007-03-2104:39:00Znenolod$
|
00001 /* Audacious - Cross-platform multimedia player 00002 * Copyright (C) 2005-2007 Audacious development team 00003 * 00004 * Based on BMP: 00005 * Copyright (C) 2003-2004 BMP development team 00006 * 00007 * Based on XMMS: 00008 * Copyright (C) 1998-2003 XMMS development team 00009 * 00010 * This program is free software; you can redistribute it and/or modify 00011 * it under the terms of the GNU General Public License as published by 00012 * the Free Software Foundation; under version 3 of the License. 00013 * 00014 * This program is distributed in the hope that it will be useful, 00015 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00016 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00017 * GNU General Public License for more details. 00018 * 00019 * You should have received a copy of the GNU General Public License 00020 * along with this program. If not, see <http://www.gnu.org/licenses>. 00021 * 00022 * The Audacious team does not consider modular code linking to 00023 * Audacious or using our public API to be a derived work. 00024 */ 00025 00026 #ifndef AUDACIOUS_MAIN_H 00027 #define AUDACIOUS_MAIN_H 00028 00029 #include <glib.h> 00030 00031 #define NOT_ALPHA_RELEASE 00032 00033 #ifdef USE_DBUS 00034 #include "dbus-service.h" 00035 #endif 00036 00037 enum { 00038 BMP_PATH_USER_DIR, 00039 BMP_PATH_USER_PLUGIN_DIR, 00040 BMP_PATH_USER_SKIN_DIR, 00041 BMP_PATH_SKIN_THUMB_DIR, 00042 BMP_PATH_PLAYLISTS_DIR, 00043 BMP_PATH_ACCEL_FILE, 00044 BMP_PATH_CONFIG_FILE, 00045 BMP_PATH_PLAYLIST_FILE, 00046 BMP_PATH_GTKRC_FILE, 00047 BMP_PATH_COUNT 00048 }; 00049 00050 extern gchar *aud_paths[]; 00051 00052 #ifdef USE_DBUS 00053 extern MprisPlayer *mpris; 00054 extern MprisTrackList *mpris_tracklist; 00055 #endif 00056 00057 void aud_quit(void); 00058 00059 #endif /* AUDACIOUS_MAIN_H */