Hi, I would like to do something similar to #ifdef __linux__
, but with the bada SDK. Is there a constant defined by default?
Also, can I detect when I am compiling for the simulator?
views:
46answers:
3
+1
A:
I use something like :
#ifdef SHP
# define CONFIG_SUPPORT_API_Osp 1 // bada
#endif
rzr
2010-08-23 14:30:29