2013-09-18 16:42:18 +00:00
|
|
|
#ifndef OSDEP_PATH_H
|
|
|
|
#define OSDEP_PATH_H
|
|
|
|
|
2013-12-21 19:45:19 +00:00
|
|
|
struct mpv_global;
|
|
|
|
|
2013-09-18 16:42:18 +00:00
|
|
|
char *mp_get_win_config_path(const char *filename);
|
|
|
|
|
2013-09-18 17:26:26 +00:00
|
|
|
// Returns absolute path of a resource file in a Mac OS X application bundle.
|
2013-12-21 19:45:19 +00:00
|
|
|
char *mp_get_macosx_bundled_path(void *talloc_ctx, struct mpv_global *global,
|
|
|
|
const char *filename);
|
2013-09-18 17:26:26 +00:00
|
|
|
|
2013-09-18 16:42:18 +00:00
|
|
|
#endif
|