VLC for iOS WatchKit Extension-Prefix.pch 895 B

1234567891011121314151617181920212223242526272829303132
  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. #ifndef NDEBUG
  22. #define APLog(format, ...) NSLog(format, ## __VA_ARGS__)
  23. #else
  24. #define APLog(format, ...)
  25. #endif