1234567891011121314151617181920212223242526272829303132333435363738 |
- /*****************************************************************************
- * Prefix header for all source files of the 'vlc-ios' target
- * VLC for iOS
- *****************************************************************************
- * Copyright (c) 2013 VideoLAN. All rights reserved.
- * $Id$
- *
- * Authors: Felix Paul Kühne <fkuehne # videolan.org>
- *
- * Refer to the COPYING file of the official project for license.
- *****************************************************************************/
- #import <Availability.h>
- #ifndef __IPHONE_7_0
- #error "This project uses features only available in iOS SDK 7.0 and later."
- #endif
- #ifdef __OBJC__
- #import <UIKit/UIKit.h>
- #import <Foundation/Foundation.h>
- #endif
- #import <MobileVLCKit/MobileVLCKit.h>
- #import <MediaLibraryKit/MediaLibraryKit.h>
- #import "VLCConstants.h"
- #define SYSTEM_VERSION_GREATER_THAN_OR_EQUAL_TO(v) ([[[UIDevice currentDevice] systemVersion] compare:v options:NSNumericSearch] != NSOrderedAscending)
- #define SYSTEM_RUNS_IOS7_OR_LATER SYSTEM_VERSION_GREATER_THAN_OR_EQUAL_TO(@"7.0")
- #ifndef NDEBUG
- #define APLog(format, ...) NSLog(format, ## __VA_ARGS__)
- #else
- #define APLog(format, ...)
- #endif
|