MCPcopy Create free account
hub / github.com/AppleWin/AppleWin / DrawConsoleLine

Function DrawConsoleLine

source/Debugger/Debugger_Display.cpp:1326–1336  ·  view source on GitHub ↗

===========================================================================

Source from the content-addressed store, hash-verified

1324
1325//===========================================================================
1326void DrawConsoleLine ( const conchar_t * pText, int y )
1327{
1328 if (y < 0)
1329 return;
1330
1331 RECT rect;
1332 GetConsoleRect( y, rect );
1333
1334 // Console background is drawn in DrawWindowBackground_Info
1335 PrintTextColor( pText, rect );
1336}
1337
1338//===========================================================================
1339void DrawConsoleInput ()

Callers 1

DrawSubWindow_ConsoleFunction · 0.85

Calls 2

GetConsoleRectFunction · 0.85
PrintTextColorFunction · 0.85

Tested by

no test coverage detected