VLC for iOS-Prefix.pch 946 B

123456789101112131415161718192021222324252627282930313233
  1. /*****************************************************************************
  2. * Prefix header for all source files of the 'vlc-ios' target
  3. * VLC for iOS
  4. *****************************************************************************
  5. * Copyright (c) 2013-2014 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. #ifdef __OBJC__
  14. #import <UIKit/UIKit.h>
  15. #import <Foundation/Foundation.h>
  16. #endif
  17. #import <MobileVLCKit/MobileVLCKit.h>
  18. #import <MediaLibraryKit/MediaLibraryKit.h>
  19. #import "VLCConstants.h"
  20. #import "UIColor+Presets.h"
  21. #import "UIBarButtonItem+Theme.h"
  22. #import "UIViewController+VLCAlert.h"
  23. #ifndef NDEBUG
  24. #define APLog(format, ...) NSLog(format, ## __VA_ARGS__)
  25. #else
  26. #define APLog(format, ...)
  27. #endif