Audacious  $Id:Doxyfile42802007-03-2104:39:00Znenolod$
util.h
Go to the documentation of this file.
1 /* Audacious - Cross-platform multimedia player
2  * Copyright (C) 2005-2011 Audacious development team
3  *
4  * Based on BMP:
5  * Copyright (C) 2003-2004 BMP development team
6  *
7  * Based on XMMS:
8  * Copyright (C) 1998-2003 XMMS development team
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation; under version 3 of the License.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program. If not, see <http://www.gnu.org/licenses>.
21  *
22  * The Audacious team does not consider modular code linking to
23  * Audacious or using our public API to be a derived work.
24  */
25 
26 #ifndef AUDACIOUS_UTIL_H
27 #define AUDACIOUS_UTIL_H
28 
29 #include <sys/types.h>
30 #include <libaudcore/core.h>
31 
32 typedef bool_t(*DirForeachFunc) (const char * path,
33  const char * basename,
34  gpointer user_data);
35 
36 bool_t dir_foreach (const char * path, DirForeachFunc func, void * user_data);
37 
38 int file_get_mtime (const char * filename);
39 void make_directory(const char * path, mode_t mode);
40 char * write_temp_file (void * data, int64_t len);
41 
42 char * get_path_to_self (void);
43 
44 void describe_song (const char * filename, const Tuple * tuple,
45  char * * title, char * * artist, char * * album);
46 
47 #endif /* AUDACIOUS_UTIL_H */