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