Searched refs:wColor (Results 1 – 6 of 6) sorted by relevance
/reactos/base/shell/cmd/ |
H A D | color.c | 34 WORD wColor = 0x00; in CommandColor() local 58 wColor = (WORD)_ttoi(rest); in CommandColor() 62 wColor = (WORD)(rest[0] + 10 - _T('a')); in CommandColor() 66 wColor = (WORD)(rest[0] + 10 - _T('A')); in CommandColor() 76 else if (StringToColor(&wColor, &rest) == FALSE) in CommandColor() 84 TRACE("Color %02x\n", wColor); in CommandColor() 90 if (ConSetScreenColor(ConStreamGetOSHandle(StdOut), wColor, in CommandColor()
|
H A D | console.c | 298 BOOL ConSetScreenColor(HANDLE hOutput, WORD wColor, BOOL bFill) in ConSetScreenColor() argument 305 if ((wColor & 0x0F) == (wColor & 0xF0) >> 4) in ConSetScreenColor() 316 wColor & 0x00FF, in ConSetScreenColor() 323 SetConsoleTextAttribute(hOutput, wColor & 0x00FF); in ConSetScreenColor()
|
H A D | console.h | 85 BOOL ConSetScreenColor(HANDLE hOutput, WORD wColor, BOOL bFill);
|
H A D | cmd.h | 51 extern WORD wColor;
|
/reactos/modules/rosapps/applications/notevil/ |
H A D | notevil.c | 44 WORD wColor) in WriteStringAt() argument 54 if (wColor) in WriteStringAt() 64 wColor, in WriteStringAt() 126 WORD wColor = 1; in MainLoop() local 142 wColor++; in MainLoop() 143 if ((wColor & 0x000F) == 0) in MainLoop() 144 wColor = 1; in MainLoop() 175 WriteStringAt(NameString, xy, wColor); in MainLoop()
|
/reactos/modules/rosapps/applications/sysutils/ctm/ |
H A D | ctm.c | 199 WORD wColor; in DisplayScreen() local 261 wColor = BACKGROUND_GREEN | in DisplayScreen() 268 wColor = BACKGROUND_BLUE | in DisplayScreen() 276 wColor, // color to fill with in DisplayScreen()
|