-
Notifications
You must be signed in to change notification settings - Fork 0
/
Tweak.h
36 lines (29 loc) · 936 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
35
36
@interface CKPreferredServiceManager : NSObject
+(id)sharedPreferredServiceManager;
-(bool)_isiMessageAvailable;
-(BOOL)availabilityForAddress:(id)arg1 onService:(id)arg2 checkWithServer:(bool)arg3 ;
@end
@interface IMService : NSObject
+(id)iMessageService;
@end
@interface CKComposition : NSObject
-(id)initWithText:(id)arg1 subject:(id)arg2 ;
@end
@interface CKTranscriptController : NSObject
-(void)sendMessage:(id)arg1;
@end
@interface IMAccountController : NSObject
+(id)sharedInstance;
-(id)__ck_bestAccountForAddress:(id)arg1 ;
@end
@interface IMAccount : NSObject
-(id)imHandleWithID:(id)arg1 ;
@end
@interface CKConversationList : NSObject
+(id)sharedConversationList;
-(id)conversationForHandles:(id)arg1 create:(bool)arg2 ;
@end
@interface CKConversation : NSObject
-(id)newMessageWithComposition:(id)arg1 addToConversation:(bool)arg2 ;
-(void)sendMessage:(id)arg1 onService:(id)arg2 newComposition:(bool)arg3 ;
@end