VLC for iOS-Prefix.pch 548 B

12345678910111213141516171819202122232425
  1. //
  2. // Prefix header for all source files of the 'AspenProject' target in the 'AspenProject' project
  3. //
  4. #import <Availability.h>
  5. #ifndef __IPHONE_4_0
  6. #warning "This project uses features only available in iOS SDK 4.0 and later."
  7. #endif
  8. #ifdef __OBJC__
  9. #import <UIKit/UIKit.h>
  10. #import <Foundation/Foundation.h>
  11. #endif
  12. #import <MobileVLCKit/MobileVLCKit.h>
  13. #import <MediaLibraryKit/MediaLibraryKit.h>
  14. #import "VLCConstants.h"
  15. #ifndef NDEBUG
  16. #define APLog(format, ...) NSLog(format, ## __VA_ARGS__)
  17. #else
  18. #define APLog(format, ...)
  19. #endif