hedgewars/getdocumentpath.m
author koda
Fri, 18 Dec 2009 02:47:28 +0000
changeset 2665 50b4e544c163
parent 2630 079ef82eac75
child 2671 7e0f88013fe8
permissions -rw-r--r--
complete transition of longword->sdl_color for TTF bindings

#import <UIKit/UIKit.h>

const char* get_documents_path() {
    NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
    NSString *documentsDirectory = [paths objectAtIndex: 0];
    const char* path = [documentsDirectory UTF8String];
    return path;
}