Replace all std::cout with internally defined macro

This commit is contained in:
Ianos Gnatiuc
2006-01-17 17:47:35 +00:00
parent d488a5510b
commit 3350c0806e
52 changed files with 728 additions and 477 deletions

View File

@@ -160,6 +160,20 @@ typedef uint32_t time32_t; /* 32-bit time_t type */
#ifdef __cplusplus
/* ------------------------------------------------------------------ */
#if defined(__GOLD_GUI__)
#define STD_PRINT(out) { \
std::strstream str; \
str << out; \
GUI_Print(str); \
}
#else
#define STD_PRINT(out) std::cout << out;
#endif
/* ------------------------------------------------------------------ */
/* Common function-pointer types */