The JUCE cross-platform C++ framework, with DISTRHO/KXStudio specific changes
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.

73 lines
2.5KB

  1. /*
  2. ==============================================================================
  3. This file is part of the JUCE library - "Jules' Utility Class Extensions"
  4. Copyright 2004-7 by Raw Material Software ltd.
  5. ------------------------------------------------------------------------------
  6. JUCE can be redistributed and/or modified under the terms of the
  7. GNU General Public License, as published by the Free Software Foundation;
  8. either version 2 of the License, or (at your option) any later version.
  9. JUCE is distributed in the hope that it will be useful,
  10. but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. GNU General Public License for more details.
  13. You should have received a copy of the GNU General Public License
  14. along with JUCE; if not, visit www.gnu.org/licenses or write to the
  15. Free Software Foundation, Inc., 59 Temple Place, Suite 330,
  16. Boston, MA 02111-1307 USA
  17. ------------------------------------------------------------------------------
  18. If you'd like to release a closed-source product which uses JUCE, commercial
  19. licenses are also available: visit www.rawmaterialsoftware.com/juce for
  20. more information.
  21. ==============================================================================
  22. */
  23. #ifndef __JUCE_MAC_NATIVEINCLUDES_JUCEHEADER__
  24. #define __JUCE_MAC_NATIVEINCLUDES_JUCEHEADER__
  25. /*
  26. This file wraps together all the mac-specific code, so that
  27. we can include all the native headers just once, and compile all our
  28. platform-specific stuff in one big lump, keeping it out of the way of
  29. the rest of the codebase.
  30. */
  31. #include "../../../src/juce_core/basics/juce_StandardHeader.h"
  32. #import <Cocoa/Cocoa.h>
  33. #import <CoreAudio/HostTime.h>
  34. #import <CoreAudio/AudioHardware.h>
  35. #import <CoreMIDI/MIDIServices.h>
  36. #import <QTKit/QTKit.h>
  37. #import <WebKit/WebKit.h>
  38. #import <DiscRecording/DiscRecording.h>
  39. #import <IOKit/IOKitLib.h>
  40. #import <IOKit/IOCFPlugIn.h>
  41. #import <IOKit/hid/IOHIDLib.h>
  42. #import <IOKit/hid/IOHIDKeys.h>
  43. #import <IOKit/network/IOEthernetInterface.h>
  44. #import <IOKit/network/IONetworkInterface.h>
  45. #import <IOKit/network/IOEthernetController.h>
  46. #import <IOKit/pwr_mgt/IOPMLib.h>
  47. #include <sys/sysctl.h>
  48. #include <sys/stat.h>
  49. #include <sys/dir.h>
  50. #include <sys/param.h>
  51. #include <sys/mount.h>
  52. #include <fnmatch.h>
  53. #include <utime.h>
  54. #if MACOS_10_4_OR_EARLIER
  55. #include <GLUT/glut.h>
  56. #endif
  57. #endif // __JUCE_MAC_NATIVEINCLUDES_JUCEHEADER__