popcorn/Plugins/iOS/NativeUtils.h

14 lines
298 B
C
Raw Normal View History

@interface NativeUtils : NSObject
+ (NSString*) charToNSString: (char*)value;
+ (NativeUtils *)sharedInstance;
- (void) registerNotification;
- (void) scheduleNotification: (int) triggerInSeconds message: (NSString*) message alarmId:(NSString *)alarmId;
- (void) cancelAllNotifications;
@end