9 int width = x2 - x1 + 1,
lines = y2 - y1 + 1;
11 if( width==0 || lines==0 )
19 COORD coord = { x1, y1 + lines };
20 FillConsoleOutputAttribute( hConsole, attr, width, coord, &written);
21 FillConsoleOutputCharacter( hConsole,
' ', width, coord, &written );
30 int view_left, view_top, view_right, view_bottom;
33 int win_left, win_top, win_right, win_bottom;
45 if( (mode == 2) || (mode == 0xFFFF0000) )
53 view_right = win_right;
59 view_right = win_right;
60 view_bottom = win_bottom;