mirror of https://github.com/mpv-player/mpv
20 lines
489 B
C
20 lines
489 B
C
#ifndef OSDEP_PATH_H
|
|
#define OSDEP_PATH_H
|
|
|
|
#define MAX_CONFIG_PATHS 32
|
|
|
|
struct mpv_global;
|
|
|
|
// Windows config directories
|
|
char *mp_get_win_exe_dir(void *talloc_ctx);
|
|
char *mp_get_win_exe_subdir(void *talloc_ctx);
|
|
char *mp_get_win_app_dir(void *talloc_ctx);
|
|
|
|
void mp_add_win_config_dirs(void *talloc_ctx, struct mpv_global *global,
|
|
char **dirs, int i);
|
|
|
|
// Returns Mac OS X application bundle directory.
|
|
char *mp_get_macosx_bundle_dir(void *talloc_ctx);
|
|
|
|
#endif
|