MobileVLCKit_Prefix.pch 583 B

123456789101112131415161718192021
  1. //
  2. // Prefix header for all source files of the 'CocoaTouchStaticLibrary' target in the 'CocoaTouchStaticLibrary' project.
  3. //
  4. #ifdef __OBJC__
  5. #import <Foundation/Foundation.h>
  6. #import <UIKit/UIKit.h>
  7. #endif
  8. #import <vlc/vlc.h>
  9. #import "VLCHelperCode.h"
  10. #ifndef NDEBUG
  11. #define VKLog(format, ...) NSLog(format, ## __VA_ARGS__)
  12. #else
  13. #define VKLog(format, ...)
  14. #endif
  15. #define SYSTEM_VERSION_GREATER_THAN_OR_EQUAL_TO(v) ([[UIDevice currentDevice] systemVersion].floatValue >= [v floatValue])
  16. #define SYSTEM_RUNS_IOS8_OR_LATER SYSTEM_VERSION_GREATER_THAN_OR_EQUAL_TO(@"8.0")