mirror of
https://github.com/rvtr/TwlToolsRED.git
synced 2025-10-31 06:41:18 -04:00
21 lines
299 B
C
21 lines
299 B
C
#ifndef _MPRINT_
|
|
#define _MPRINT_
|
|
|
|
#define NUM_OF_SCREEN 4
|
|
|
|
extern TEXT_CTRL *tc[NUM_OF_SCREEN];
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void mfprintf(TEXT_CTRL *tc, const char *fmt, ...);
|
|
void mprintf(const char *fmt, ...);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
|
|
#endif /* _MPRINT_ */
|