Advertisement
Guest User

Untitled

a guest
Jan 18th, 2019
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. void SetColor(int ForgC)
  2. {
  3. WORD wColor;
  4.  
  5. HANDLE hStdOut = GetStdHandle(STD_OUTPUT_HANDLE);
  6. CONSOLE_SCREEN_BUFFER_INFO csbi;
  7.  
  8.  
  9. if(GetConsoleScreenBufferInfo(hStdOut, &csbi))
  10. {
  11.  
  12. wColor = (csbi.wAttributes & 0xF0) + (ForgC & 0x0F);
  13. SetConsoleTextAttribute(hStdOut, wColor);
  14. }
  15. return;
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement