VLC for iOS WatchKit Extension-Prefix.pch 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. /*****************************************************************************
  2. * Prefix header for all source files of the 'VLC for iOS WK Ext' target
  3. * VLC for iOS
  4. *****************************************************************************
  5. * Copyright (c) 2015 VideoLAN. All rights reserved.
  6. * $Id$
  7. *
  8. * Authors: Felix Paul Kühne <fkuehne # videolan.org>
  9. *
  10. * Refer to the COPYING file of the official project for license.
  11. *****************************************************************************/
  12. #import <Availability.h>
  13. #ifndef __IPHONE_8_2
  14. #error "This project uses features only available in iOS SDK 8.2 and later."
  15. #endif
  16. #ifdef __OBJC__
  17. #import <UIKit/UIKit.h>
  18. #import <Foundation/Foundation.h>
  19. #endif
  20. #import "VLCAudio.h"
  21. #import "VLCLibrary.h"
  22. #import "VLCMedia.h"
  23. #import "VLCMediaDiscoverer.h"
  24. #import "VLCMediaList.h"
  25. #import "VLCMediaPlayer.h"
  26. #import "VLCMediaListPlayer.h"
  27. #import "VLCMediaThumbnailer.h"
  28. #import "VLCTime.h"
  29. #import "MLFile.h"
  30. #import "MLLabel.h"
  31. #import "MLMediaLibrary.h"
  32. #import "MLShow.h"
  33. #import "MLShowEpisode.h"
  34. #import "MLAlbum.h"
  35. #import "MLAlbumTrack.h"
  36. #ifndef NDEBUG
  37. #define APLog(format, ...) NSLog(format, ## __VA_ARGS__)
  38. #else
  39. #define APLog(format, ...)
  40. #endif