WhiteConsts.h 852 B

12345678910111213141516171819202122232425262728293031323334353637
  1. //
  2. // WhiteConsts.h
  3. // WhiteSDK
  4. //
  5. // Created by yleaf on 2019/3/4.
  6. //
  7. #import <Foundation/Foundation.h>
  8. #pragma mark - Domain
  9. extern NSString * const WhiteConstErrorDomain;
  10. extern NSString * const WhiteConstConvertDomain;
  11. #pragma mark - Name
  12. typedef NSString * WhiteFunName NS_STRING_ENUM;
  13. extern WhiteFunName const WhiteVideoPluginName;
  14. #pragma mark - Ratio
  15. extern NSTimeInterval const WhiteConstTimeUnitRatio;
  16. #pragma mark - Region
  17. /** 数据中心 */
  18. typedef NSString * WhiteRegionKey NS_STRING_ENUM;
  19. extern WhiteRegionKey const WhiteRegionDefault;
  20. /** 中国 */
  21. extern WhiteRegionKey const WhiteRegionCN;
  22. /** 美国 */
  23. extern WhiteRegionKey const WhiteRegionUS;
  24. /** 印度 */
  25. extern WhiteRegionKey const WhiteRegionIN;
  26. /** 新加坡 */
  27. extern WhiteRegionKey const WhiteRegionSG;
  28. /** 英国 */
  29. extern WhiteRegionKey const WhiteRegionGB;