Files
yinmeng-ios/xplan-ios/Library/RPSDK/SecurityGuardSDK.framework/Headers/Open/OpenInitialize/IOpenInitializeComponent.h

38 lines
552 B
C
Raw Normal View History

2021-09-23 14:52:12 +08:00
//
// OpenSecurityGuardSDK version 2.1.0
//
#ifndef OpenSecurityGuardSDK_IOpenInitializeComponent_h
#define OpenSecurityGuardSDK_IOpenInitializeComponent_h
/**
* component protocal
*/
@protocol IOpenInitializeComponent <NSObject>
/**
*
*
* @return
*/
- (NSInteger) initialize;
/**
*
*
* @return
*/
- (NSInteger) initialize: (void *)authCode;
2023-03-15 15:39:06 +08:00
- (NSInteger) initialize: (void *)authCode
withCustomBundlePath:(NSString*) customBundlePath;
2021-09-23 14:52:12 +08:00
@end
#endif