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