12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- #include "platform/CCPlatformConfig.h"
- #if CC_TARGET_PLATFORM == CC_PLATFORM_TIZEN
- #include "platform/CCCommon.h"
- #include "platform/tizen/CCStdC-tizen.h"
- #include "base/CCConsole.h"
- NS_CC_BEGIN
- void MessageBox(const char * msg, const char * title)
- {
- log("%s: %s", title, msg);
- }
- void LuaLog(const char * format)
- {
- puts(format);
- }
- NS_CC_END
- #endif
|