]>
Commit | Line | Data |
---|---|---|
7341eedb JF |
1 | /* Cycript - The Truly Universal Scripting Language |
2 | * Copyright (C) 2009-2016 Jay Freeman (saurik) | |
8d20f0f1 JF |
3 | */ |
4 | ||
5 | /* GNU Affero General Public License, Version 3 {{{ */ | |
6 | /* | |
7 | * This program is free software: you can redistribute it and/or modify | |
8 | * it under the terms of the GNU Affero General Public License as published by | |
9 | * the Free Software Foundation, either version 3 of the License, or | |
10 | * (at your option) any later version. | |
11 | ||
12 | * This program is distributed in the hope that it will be useful, | |
13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
15 | * GNU Affero General Public License for more details. | |
16 | ||
17 | * You should have received a copy of the GNU Affero General Public License | |
18 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | |
19 | **/ | |
20 | /* }}} */ | |
21 | ||
2e43a0b0 JF |
22 | #define __USE_EXTERN_INLINES |
23 | ||
8d20f0f1 | 24 | #include <dlfcn.h> |
e2ce853b | 25 | #include <fcntl.h> |
2e43a0b0 | 26 | #include <unistd.h> |
8d20f0f1 | 27 | |
e2ce853b | 28 | #include <sys/mman.h> |
8d20f0f1 JF |
29 | #include <sys/stat.h> |
30 | ||
31 | #include <sqlite3.h> | |
32 | ||
a2beb6bb JF |
33 | #if CY_JAVA |
34 | #ifdef __APPLE__ | |
35 | #include <JavaVM/jni.h> | |
36 | #else | |
37 | #include <jni.h> | |
38 | #endif | |
39 | #endif | |
40 | ||
41 | #if CY_RUBY | |
42 | #ifdef __APPLE__ | |
43 | #include <Ruby/ruby.h> | |
44 | #else | |
45 | #include <ruby.h> | |
46 | #endif | |
47 | #endif | |
48 | ||
49 | #if CY_PYTHON | |
50 | #include <Python.h> | |
51 | #endif | |
52 | ||
53 | #if CY_OBJECTIVEC | |
8d20f0f1 JF |
54 | #include <objc/runtime.h> |
55 | #endif | |
56 | ||
57 | #ifdef __APPLE__ | |
58 | #include <AddressBook/AddressBook.h> | |
59 | #include <CoreData/CoreData.h> | |
60 | #include <CoreLocation/CoreLocation.h> | |
61 | #include <Security/Security.h> | |
62 | ||
63 | #if TARGET_OS_IPHONE | |
64 | #include <UIKit/UIKit.h> | |
65 | #else | |
66 | #include <AppKit/AppKit.h> | |
67 | #endif | |
68 | #endif |