mirror of https://github.com/axmolengine/axmol.git
24 lines
456 B
C
24 lines
456 B
C
#ifndef __CC_PLATFORMFUNC_BADA_H__
|
|
#define __CC_PLATFORMFUNC_BADA_H__
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#ifndef CC_BADA_2_0
|
|
|
|
#define printf(...) AppLog(__VA_ARGS__)
|
|
|
|
int sprintf(char* buf, const char *format, ...);
|
|
int sscanf (const char *s,const char *format, ...);
|
|
|
|
#endif
|
|
|
|
void badaAssert(const char* pFunction, int lineNumber, const char* pszContent);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* __CC_PLATFORMFUNC_BADA_H__ */
|