/***************************************************************************** * Prefix header for all source files of the 'vlc-ios' target * VLC for iOS ***************************************************************************** * Copyright (c) 2013-2014 VideoLAN. All rights reserved. * $Id$ * * Authors: Felix Paul Kühne * * Refer to the COPYING file of the official project for license. *****************************************************************************/ #import #ifndef __IPHONE_8_2 #error "This project uses features only available in iOS SDK 8.2 and later." #endif #ifdef __OBJC__ #import #import #endif #import "VLCAudio.h" #import "VLCLibrary.h" #import "VLCMedia.h" #import "VLCMediaDiscoverer.h" #import "VLCMediaList.h" #import "VLCMediaPlayer.h" #import "VLCMediaListPlayer.h" #import "VLCMediaThumbnailer.h" #import "VLCTime.h" #import "MLFile.h" #import "MLLabel.h" #import "MLMediaLibrary.h" #import "MLShow.h" #import "MLShowEpisode.h" #import "MLAlbum.h" #import "MLAlbumTrack.h" #import "VLCConstants.h" #import "UIColor+Presets.h" #import "UIBarButtonItem+Theme.h" #import "VLCAlertView.h" #import "VLCNavigationController.h" #import "VLCSidebarController.h" #define SYSTEM_VERSION_GREATER_THAN_OR_EQUAL_TO(v) ([[[UIDevice currentDevice] systemVersion] compare:v options:NSNumericSearch] != NSOrderedAscending) #define SYSTEM_RUNS_IOS8_OR_LATER SYSTEM_VERSION_GREATER_THAN_OR_EQUAL_TO(@"8.0") #define SYSTEM_RUNS_IOS82_OR_LATER SYSTEM_VERSION_GREATER_THAN_OR_EQUAL_TO(@"8.2") #ifndef NDEBUG #define APLog(format, ...) NSLog(format, ## __VA_ARGS__) #else #define APLog(format, ...) #endif