-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathtweak.h
34 lines (27 loc) · 896 Bytes
/
tweak.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
#import <Foundation/Foundation.h>
#include <RemoteLog.h>
@interface NCNotificationContent : NSObject
- (NSString *)message;
- (NSString *)title;
@end
@interface NCNotificationRequest : NSObject
- (NSString *)sectionIdentifier;
- (NCNotificationContent *)content;
@end
@interface BBSound
@end
@interface BBBulletinRequest
@property (nonatomic,copy) NSString * title;
@property (nonatomic,copy) NSString * subtitle;
@property (nonatomic,copy) NSString * message;
@property (nonatomic,copy) NSString * bulletinID;
@property (nonatomic,copy) NSString * sectionID;
@property (nonatomic,retain) BBSound * sound;
@property (assign,nonatomic) BOOL turnsOnDisplay;
@end
@interface BBBulletin : BBBulletinRequest
@end
@interface BBServer
-(void)publishBulletin:(id)arg1 destinations:(unsigned long long)arg2;
-(void)_clearBulletinIDs:(id)arg1 forSectionID:(id)arg2 shouldSync:(BOOL)arg3;
@end