PS: I am using Code::blocks
no conio2.h available
I want to set the font color to black by windows API
SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE), XXXXXX);
What should I fill in XXXXXX?
PS: I am using Code::blocks
no conio2.h available
I want to set the font color to black by windows API
SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE), XXXXXX);
What should I fill in XXXXXX?
The font color is represented by the combination of several possible attributes:
FOREGROUND_BLUE Text color contains blue.
FOREGROUND_GREEN Text color contains green.
FOREGROUND_RED Text color contains red.
FOREGROUND_INTENSITY Text color is intensified.
In your case, since you want the foreground color to be black, you have to pass no attributes at all:
SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE), 0);
As Ben Voigt points out in the comments below, this will result in black text on a black background. You might want to specify a combination of background attributes in order for the text to readable. For instance (black on white):
SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE),
BACKGROUND_RED | BACKGROUND_GREEN | BACKGROUND_BLUE);
From the documentation: