Add remaining files
[juce-lv2.git] / juce / source / src / native / android / juce_android_NativeIncludes.h
blob6aeb86067fd57f8f3b7e6f9c088fe6ba46a520ad
1 /*
2 ==============================================================================
4 This file is part of the JUCE library - "Jules' Utility Class Extensions"
5 Copyright 2004-11 by Raw Material Software Ltd.
7 ------------------------------------------------------------------------------
9 JUCE can be redistributed and/or modified under the terms of the GNU General
10 Public License (Version 2), as published by the Free Software Foundation.
11 A copy of the license is included in the JUCE distribution, or can be found
12 online at www.gnu.org/licenses.
14 JUCE is distributed in the hope that it will be useful, but WITHOUT ANY
15 WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
16 A PARTICULAR PURPOSE. See the GNU General Public License for more details.
18 ------------------------------------------------------------------------------
20 To release a closed-source product which uses JUCE, commercial licenses are
21 available: visit www.rawmaterialsoftware.com/juce for more information.
23 ==============================================================================
26 //==============================================================================
27 #ifndef __JUCE_ANDROID_NATIVEINCLUDES_JUCEHEADER__
28 #define __JUCE_ANDROID_NATIVEINCLUDES_JUCEHEADER__
31 #include "../../core/juce_TargetPlatform.h"
32 #include "../../../juce_Config.h"
34 #include <jni.h>
35 #include <pthread.h>
36 #include <sched.h>
37 #include <sys/time.h>
38 #include <utime.h>
39 #include <errno.h>
40 #include <fcntl.h>
41 #include <dlfcn.h>
42 #include <sys/stat.h>
43 #include <sys/statfs.h>
44 #include <sys/ptrace.h>
45 #include <sys/sysinfo.h>
46 #include <sys/mman.h>
47 #include <pwd.h>
48 #include <dirent.h>
49 #include <fnmatch.h>
51 #if JUCE_OPENGL
52 #include <GLES/gl.h>
53 #endif
56 #endif // __JUCE_ANDROID_NATIVEINCLUDES_JUCEHEADER__