-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathHeaders.h
40 lines (33 loc) · 1.17 KB
/
Headers.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#import <SystemConfiguration/CaptiveNetwork.h>
#import <libactivator/libactivator.h>
#import <QuartzCore/QuartzCore.h>
#import <mach/mach_host.h>
#import <UIKit/UIKit.h>
#import <mach/mach.h>
#import <arpa/inet.h>
#import <sys/param.h>
#import <sys/mount.h>
#import <ifaddrs.h>
#import <net/if.h>
#import <netdb.h>
#import <unistd.h>
#include <objc/runtime.h>
#import "MobileGestalt.h"
#import "NSHost.h"
//CoreFoundation Numbers
#ifndef kCFCoreFoundationVersionNumber_iOS_7_0
#define kCFCoreFoundationVersionNumber_iOS_7_0 847.20
#endif
#ifndef kCFCoreFoundationVersionNumber_iOS_7_1_2
#define kCFCoreFoundationVersionNumber_iOS_7_1_2 847.27
#endif
#ifndef kCFCoreFoundationVersionNumber_iOS_8_0
#define kCFCoreFoundationVersionNumber_iOS_8_0 1140.10
#endif
#ifndef kCFCoreFoundationVersionNumber_iOS_8_3
#define kCFCoreFoundationVersionNumber_iOS_8_3 1144.17
#endif
#define iOS8 kCFCoreFoundationVersionNumber >= kCFCoreFoundationVersionNumber_iOS_8_0
#define iOS7 kCFCoreFoundationVersionNumber >= kCFCoreFoundationVersionNumber_iOS_7_0 \
&& kCFCoreFoundationVersionNumber <= kCFCoreFoundationVersionNumber_iOS_7_1_2
#define iPad (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad)