1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- #import <Foundation/Foundation.h>
- @interface DTFSdk : NSObject
- + (void)init;
- + (void)initIPv6;
- + (NSString *)getVersion;
- + (void)preload:(NSDictionary *)param completion:(void (^)(BOOL success))completion;
- +(int) getSession:(char *) session : (const int) lenth DEPRECATED_MSG_ATTRIBUTE("use getMobileSession instead");
- +(NSString*)getMobileSession;
- + (NSDictionary*) getSecurityInfo DEPRECATED_MSG_ATTRIBUTE("won't use any more");;
- @end
|