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
|
|
|
|
* with mpv; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#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
|
|
|
|
2014-06-18 23:55:40 +00:00
|
|
|
char *mp_get_macosx_bundle_dir(void *talloc_ctx)
|
2012-12-09 14:05:21 +00:00
|
|
|
{
|
2013-09-18 17:26:26 +00:00
|
|
|
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
|
|
|
|
NSString *path = [[NSBundle mainBundle] resourcePath];
|
2014-06-18 23:55:40 +00:00
|
|
|
char *rv = talloc_strdup(talloc_ctx, [path UTF8String]);
|
2013-09-18 17:26:26 +00:00
|
|
|
[pool release];
|
|
|
|
return rv;
|
2012-12-09 14:05:21 +00:00
|
|
|
}
|