void R_WriteConsoleEx(const char *buf, int len, int otype) { R_ProcessEvents(); if (TrueWriteConsole) TrueWriteConsole(buf, len); else TrueWriteConsoleEx(buf, len, otype); }
void R_WriteConsole(char *buf, int len) { R_ProcessEvents(); TrueWriteConsole(buf, len); }