lpw
2024-06-12 4c4e51191fa9db55227f1fe86181916f54c0b9a1
commit | author | age
85c9ff 1 //
H 2 //  WAWechatCore.h
3 //  WAWechatImplUI
4 //
5 //  Created by hank on 2016/11/23.
6 //  Copyright © 2016年 hank. All rights reserved.
7 //
8
9 #import <WASdkIntf/WASdkIntf.h>
10
4c4e51 11
85c9ff 12 @class WACoreProxy;
H 13 @class WAWechatCore;
14
15 #define WechatLog(fmt,...) {\
16 if([WACoreProxy isDebugMode]){\
17 NSLog((@"WASDK LOG [(version %@) %s ]:" fmt), [WAWechatCore getVersion],__FUNCTION__, ##__VA_ARGS__);\
18 [WACoreProxy addLogWithString:[NSString stringWithFormat:(@"(version %@) %s ]:" fmt),[WAWechatCore getVersion],__FUNCTION__, ##__VA_ARGS__]];\
19 }\
20 }
21
22 @interface WAWechatCore : WACore
23
24 +(NSString*)getVersion;
25
26 @end