45 lines
1.4 KiB
Objective-C
45 lines
1.4 KiB
Objective-C
#if defined(OS_MACOS)
|
|
|
|
#include <string.h>
|
|
#include <stdlib.h>
|
|
#include <Foundation/Foundation.h>
|
|
|
|
char* getMacExecutableDirectoryPath(void) {
|
|
@autoreleasepool {
|
|
const char *pathString = [[[[[NSBundle mainBundle] executableURL] URLByDeletingLastPathComponent] path] UTF8String];
|
|
|
|
char *result = malloc(strlen(pathString) + 1);
|
|
strcpy(result, pathString);
|
|
|
|
return result;
|
|
}
|
|
}
|
|
|
|
char* getMacApplicationSupportDirectoryPath(void) {
|
|
@autoreleasepool {
|
|
NSError* error = nil;
|
|
NSURL* dirUrl = [[NSFileManager defaultManager] URLForDirectory:NSApplicationSupportDirectory
|
|
inDomain:NSUserDomainMask
|
|
appropriateForURL:nil
|
|
create:YES
|
|
error:&error];
|
|
|
|
if (error != nil) {
|
|
return NULL;
|
|
}
|
|
|
|
const char *pathString = [[[dirUrl URLByAppendingPathComponent:(@"imhex")] path] UTF8String];
|
|
|
|
char *result = malloc(strlen(pathString) + 1);
|
|
strcpy(result, pathString);
|
|
|
|
return result;
|
|
}
|
|
}
|
|
|
|
void macFree(void *ptr) {
|
|
free(ptr);
|
|
}
|
|
|
|
#endif
|