IOpenInitializeComponent.h 552 B

12345678910111213141516171819202122232425262728293031323334353637
  1. //
  2. // OpenSecurityGuardSDK version 2.1.0
  3. //
  4. #ifndef OpenSecurityGuardSDK_IOpenInitializeComponent_h
  5. #define OpenSecurityGuardSDK_IOpenInitializeComponent_h
  6. /**
  7. * 初始化component protocal
  8. */
  9. @protocol IOpenInitializeComponent <NSObject>
  10. /**
  11. * 初始化接口
  12. *
  13. * @return 初始化结果
  14. */
  15. - (NSInteger) initialize;
  16. /**
  17. * 初始化接口
  18. *
  19. * @return 初始化结果
  20. */
  21. - (NSInteger) initialize: (void *)authCode;
  22. - (NSInteger) initialize: (void *)authCode
  23. withCustomBundlePath:(NSString*) customBundlePath;
  24. @end
  25. #endif