summaryrefslogtreecommitdiffstats
path: root/osdep/path.h
blob: c09bedceb05894785ff446234b55de80a4993b6e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef OSDEP_PATH_H
#define OSDEP_PATH_H

#define MAX_CONFIG_PATHS 32

struct mpv_global;

void mp_add_win_config_dirs(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