VLC for iOS WatchKit Extension-Prefix.pch 948 B

123456789101112131415161718192021222324252627282930313233
  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 <MediaLibraryKit/MediaLibraryKit.h>
  21. #import "WKInterfaceController+VLCConnectionAlert.h"
  22. #ifndef NDEBUG
  23. #define APLog(format, ...) NSLog(format, ## __VA_ARGS__)
  24. #else
  25. #define APLog(format, ...)
  26. #endif