123456789101112131415161718192021 |
- //
- // Prefix header for all source files of the 'CocoaTouchStaticLibrary' target in the 'CocoaTouchStaticLibrary' project.
- //
- #ifdef __OBJC__
- #import <Foundation/Foundation.h>
- #import <UIKit/UIKit.h>
- #endif
- #import <vlc/vlc.h>
- #import "VLCHelperCode.h"
- #ifndef NDEBUG
- #define VKLog(format, ...) NSLog(format, ## __VA_ARGS__)
- #else
- #define VKLog(format, ...)
- #endif
- #define SYSTEM_VERSION_GREATER_THAN_OR_EQUAL_TO(v) ([[UIDevice currentDevice] systemVersion].floatValue >= [v floatValue])
- #define SYSTEM_RUNS_IOS8_OR_LATER SYSTEM_VERSION_GREATER_THAN_OR_EQUAL_TO(@"8.0")
|