istereo2

annotate src/config.h @ 25:a9f2d30f7e8e

First hack at implementing banners on android. JNI interface to hide/show ads with the menu remains to be done.
author John Tsiombikas <nuclear@member.fsf.org>
date Mon, 05 Oct 2015 06:00:16 +0300
parents a3c4fcc9f8f3
children
rev   line source
nuclear@2 1 #ifndef CONFIG_H_
nuclear@2 2 #define CONFIG_H_
nuclear@2 3
nuclear@6 4 #ifdef __APPLE__
nuclear@6 5 #include <TargetConditionals.h>
nuclear@6 6
nuclear@10 7 #if TARGET_IPHONE_SIMULATOR || TARGET_OS_IPHONE
nuclear@2 8 #define IPHONE
nuclear@7 9 #define TARGET_IPHONE
nuclear@2 10 #endif
nuclear@2 11
nuclear@6 12 #endif /* __APPLE__ */
nuclear@6 13
nuclear@2 14 #endif /* CONFIG_H_ */