Lines Matching refs:g_attrCurrent
161 static WORD g_attrCurrent; variable
2831 g_attrCurrent = g_attrDefault = g_cbOrig.Info.wAttributes; in mch_init_c()
2835 g_attrCurrent = g_attrDefault = csbi.wAttributes; in mch_init_c()
2838 cterm_normal_fg_color = (g_attrCurrent & 0xf) + 1; in mch_init_c()
2840 cterm_normal_bg_color = ((g_attrCurrent >> 4) & 0xf) + 1; in mch_init_c()
2847 update_tcap(g_attrCurrent); in mch_init_c()
5629 ClearConsoleBuffer(g_attrCurrent); in termcap_mode_start()
5744 FillConsoleOutputAttribute(g_hConOut, g_attrCurrent, n, coord, in clear_chars()
5909 fill.Attributes = g_attrCurrent; in insert_lines()
5980 fill.Attributes = g_attrCurrent; in delete_lines()
6067 g_attrCurrent = wAttr & 0xff; in textattr()
6076 g_attrCurrent = (g_attrCurrent & 0xf0) + (wAttr & 0x0f); in textcolor()
6079 SetConsoleTextAttribute(g_hConOut, g_attrCurrent); in textcolor()
6088 g_attrCurrent = (g_attrCurrent & 0x0f) + ((wAttr & 0x0f) << 4); in textbackground()
6091 SetConsoleTextAttribute(g_hConOut, g_attrCurrent); in textbackground()
6118 g_attrPreStandout = g_attrCurrent; in standout()
6120 textattr((WORD) (g_attrCurrent|FOREGROUND_INTENSITY|BACKGROUND_INTENSITY)); in standout()
6176 WORD attrFlash = ~g_attrCurrent & 0xff; in visual_bell()
6278 FillConsoleOutputAttribute(g_hConOut, g_attrCurrent, cells, in write_chars()