i'm trying use the WriteConsoleOutputAttribute() function for create the blink effect, but seems not working
seems that i'm confuse the the parameters types
Code:
void BlinkText(char *Text, COORD TextPos, int BackColor, int Forecolor)	{		
		WriteConsoleOutputAttribute(GetStdHandle(STD_OUTPUT_HANDLE),Forecolor|BackColor<<4,strlen(Text),TextPos,Text);
	}
can anyone advice me?