9 lines
301 B
Objective-C
9 lines
301 B
Objective-C
#ifndef _PS_IOSVER
|
|
#define _PS_IOSVER
|
|
|
|
#import <CoreFoundation/CoreFoundation.h>
|
|
#import <version.h>
|
|
|
|
#define IS_IOS_BETWEEN_EEX(start, end) (kCFCoreFoundationVersionNumber >= kCFCoreFoundationVersionNumber_ ## start && kCFCoreFoundationVersionNumber < kCFCoreFoundationVersionNumber_ ## end)
|
|
|
|
#endif
|