comparison path.h @ 30901:76a13038105e

Rename get_path.[ch] --> path.[ch]. These files now contain different functions related to path handling.
author diego
date Sat, 20 Mar 2010 23:38:27 +0000
parents get_path.h@e907ff9e7e77
children f405a747a35a
comparison
equal deleted inserted replaced
30900:e907ff9e7e77 30901:76a13038105e
1 /*
2 * Get path to config dir/file.
3 *
4 * This file is part of MPlayer.
5 *
6 * MPlayer is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * MPlayer is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License along
17 * with MPlayer; if not, write to the Free Software Foundation, Inc.,
18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19 */
20
21 #ifndef MPLAYER_PATH_H
22 #define MPLAYER_PATH_H
23
24 extern char *def_path;
25
26 char *get_path(const char *filename);
27 void set_path_env(void);
28 void SetCodecPath(const char *path);
29
30 #endif /* MPLAYER_PATH_H */