forked from sunnyyoung/WeChatTweak-macOS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
WeChatTweakHeaders.h
85 lines (54 loc) · 1.79 KB
/
WeChatTweakHeaders.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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
//
// WeChatTweakHeaders.h
// WeChatTweak
//
// Created by Sunnyyoung on 2017/8/11.
// Copyright © 2017年 Sunnyyoung. All rights reserved.
//
#import <Foundation/Foundation.h>
#import <Cocoa/Cocoa.h>
@interface MessageData: NSObject
@property(nonatomic) unsigned int messageType;
@property(nonatomic) unsigned int msgStatus;
@property(retain, nonatomic) NSString *toUsrName;
@property(retain, nonatomic) NSString *fromUsrName;
@property(retain, nonatomic) NSString *msgContent;
@property(nonatomic) unsigned int msgCreateTime;
@property(nonatomic) unsigned int mesLocalID;
- (BOOL)isSendFromSelf;
@end
@interface WCContactData : NSObject
@property(retain, nonatomic) NSString *m_nsNickName;
- (BOOL)isChatStatusNotifyOpen;
@end
@interface ContactStorage : NSObject
- (id)GetContact:(id)arg1;
@end
@interface GroupStorage: NSObject
- (id)GetGroupContact:(id)arg1;
@end
@interface MMServiceCenter : NSObject
+ (id)defaultCenter;
- (id)getService:(Class)arg1;
@end
@interface MessageService: NSObject
- (id)GetMsgData:(id)arg1 svrId:(unsigned long long)arg2;
- (void)DelMsg:(id)arg1 msgList:(id)arg2 isDelAll:(BOOL)arg3 isManual:(BOOL)arg4;
- (void)AddRevokePromptMsg:(id)arg1 msgData:(id)arg2;
- (void)notifyAddMsgOnMainThread:(id)arg1 msgData:(id)arg2;
@end
@interface AccountService: NSObject
- (BOOL)canAutoAuth;
- (void)AutoAuth;
@end
@protocol MASPreferencesViewController <NSObject>
@property(readonly, nonatomic) NSString *toolbarItemLabel;
@property(readonly, nonatomic) NSImage *toolbarItemImage;
@property(readonly, nonatomic) NSString *identifier;
@optional
@property(readonly, nonatomic) BOOL hasResizableHeight;
@property(readonly, nonatomic) BOOL hasResizableWidth;
@end
@interface MASPreferencesWindowController : NSWindowController
- (id)initWithViewControllers:(NSArray *)arg1;
@end