-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathShared.h
More file actions
51 lines (39 loc) · 1.32 KB
/
Shared.h
File metadata and controls
51 lines (39 loc) · 1.32 KB
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#import <Foundation/Foundation.h>
@interface NCNotificationAction : NSObject
@property (nonatomic, readonly, copy) NSString* identifier;
@end
@interface NCNotificationMasterList : NSObject
@property NSArray* notificationSections;
@end
@interface NCNotificationStructuredListViewController : NSObject
@property NCNotificationMasterList* masterList;
@end
@interface NCNotificationStructuredSectionList : NSObject
- (NSArray*)allNotificationRequests;
@end
@interface BSServiceConnectionEndpoint : NSObject
@end
@interface NCNotificationRequest : NSObject
@property (nonatomic, readonly, copy) NSDictionary* context;
@property NSString* sectionIdentifier; // eg. com.apple.MobileSMS
@end
@interface IMDaemonController : NSObject
+ (IMDaemonController*)sharedController;
- (BOOL)connectToDaemon;
@end
@interface IMMessage : NSObject
@end
@interface IMChat : NSObject
- (id)loadMessagesUpToGUID:(NSString*)arg1 date:(id)date limit:(unsigned long long)arg2 loadImmediately:(BOOL)loadImmediately;
- (IMMessage*)messageForGUID:(NSString*)guid;
- (void)markMessageAsRead:(IMMessage*)msg;
@end
@interface IMChatRegistry : NSObject
+ (IMChatRegistry*)sharedInstance;
- (IMChat*)existingChatWithChatIdentifier:(NSString*)chat_id;
@end
@interface __NSCFString : NSMutableString
@end
@interface __NSSetM : NSMutableSet
- (unsigned long long)count;
@end