2012-12-09 14:05:21 +00:00
|
|
|
/*
|
|
|
|
* This file is part of mpv.
|
|
|
|
*
|
|
|
|
* mpv is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* mpv is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
2015-04-13 07:36:54 +00:00
|
|
|
* with mpv. If not, see <http://www.gnu.org/licenses/>.
|
2012-12-09 14:05:21 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#import <Foundation/Foundation.h>
|
2013-12-17 02:35:43 +00:00
|
|
|
#include "options/path.h"
|
2013-09-18 17:26:26 +00:00
|
|
|
#include "osdep/path.h"
|
2012-12-09 14:05:21 +00:00
|
|
|
|
2015-05-01 19:13:44 +00:00
|
|
|
const char *mp_get_platform_path_osx(void *talloc_ctx, const char *type)
|
2012-12-09 14:05:21 +00:00
|
|
|
{
|
2015-05-01 19:13:44 +00:00
|
|
|
if (strcmp(type, "osxbundle") == 0) {
|
|
|
|
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
|
|
|
|
NSString *path = [[NSBundle mainBundle] resourcePath];
|
|
|
|
char *res = talloc_strdup(talloc_ctx, [path UTF8String]);
|
|
|
|
[pool release];
|
|
|
|
return res;
|
|
|
|
}
|
2015-05-09 13:26:47 +00:00
|
|
|
if (strcmp(type, "desktop") == 0 && getenv("HOME"))
|
|
|
|
return mp_path_join(talloc_ctx, getenv("HOME"), "Desktop");
|
2015-05-01 19:13:44 +00:00
|
|
|
return NULL;
|
2012-12-09 14:05:21 +00:00
|
|
|
}
|