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

#include "config.h"

#ifdef _WIN32
char *mp_get_win_config_path(const char *filename);
#endif

#ifdef CONFIG_COCOA
// Returns absolute path of a resource file in a Mac OS X application bundle.
char *mp_get_macosx_bundled_path(const char *filename);
#endif

#endif