11 lines
No EOL
354 B
C
11 lines
No EOL
354 B
C
#define PLIST_PATH @"/var/mobile/Library/Preferences/com.antique.i8corners.plist"
|
|
|
|
|
|
inline bool GetPrefBool(NSString *key)
|
|
{
|
|
return [[[NSDictionary dictionaryWithContentsOfFile:PLIST_PATH] valueForKey:key] boolValue];
|
|
}
|
|
|
|
inline int GetPrefInt(NSString *key) {
|
|
return [[[NSDictionary dictionaryWithContentsOfFile:PLIST_PATH] valueForKey:key] intValue];
|
|
} |