-
Notifications
You must be signed in to change notification settings - Fork 94
/
Copy pathrootless.h
35 lines (24 loc) · 1002 Bytes
/
rootless.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#include <TargetConditionals.h>
#if TARGET_OS_IPHONE && !TARGET_OS_SIMULATOR
#include <libroot/libroot.h>
#ifdef XINA_SUPPORT
_Pragma("message(\"'XINA_SUPPORT' is deprecated. libroot will now handle this for you.\")")
#endif
#define ROOT_PATH(cPath) JBROOT_PATH_CSTRING(cPath)
#define ROOT_PATH_VAR(cPath) JBROOT_PATH_CSTRING(cPath)
#define ROOT_PATH_NS(nsPath) JBROOT_PATH_NSSTRING(nsPath)
#define ROOT_PATH_NS_VAR(nsPath) JBROOT_PATH_NSSTRING(nsPath)
#else
// no libroot support
#include <sys/syslimits.h>
#include <string.h>
#define ROOT_PATH(cPath) THEOS_PACKAGE_INSTALL_PREFIX cPath
#define ROOT_PATH_NS(path) @THEOS_PACKAGE_INSTALL_PREFIX path
#define ROOT_PATH_NS_VAR(path) [@THEOS_PACKAGE_INSTALL_PREFIX stringByAppendingPathComponent:path]
#define ROOT_PATH_VAR(path) sizeof(THEOS_PACKAGE_INSTALL_PREFIX) > 1 ? ({ \
char outPath[PATH_MAX]; \
strlcpy(outPath, THEOS_PACKAGE_INSTALL_PREFIX, PATH_MAX); \
strlcat(outPath, path, PATH_MAX); \
outPath; \
}) : path
#endif