You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
436 B
20 lines
436 B
|
|
NS_ASSUME_NONNULL_BEGIN |
|
|
|
typedef NS_ENUM(NSInteger, UPURStore) { |
|
kUPURStoreNotSpecified, |
|
kUPURStoreGooglePlay, |
|
kUPURStoreAmazonAppStore, |
|
kUPURStoreCloudMoolah, |
|
kUPURStoreSamsungApps, |
|
kUPURStoreXiaomiMiPay, |
|
kUPURStoreMacAppStore, |
|
kUPURStoreAppleAppStore, |
|
kUPURStoreWinRT, |
|
kUPURStoreTizenStore, |
|
kUPURStoreFacebookStore |
|
}; |
|
|
|
NSString *NSStringFromUPURAppStore(UPURStore); |
|
|
|
NS_ASSUME_NONNULL_END
|
|
|