Can someone please give me an example of SetConsoleFontEx() please? I've got the first two parameters down (GetStdHandle(STD_OUTPUT_HANDLE) & false), but can't figure out the third. Help?
I've not used this function myself. But presumably you need to define a CONSOLE_FONT_INFOEX structure in your program, assign appropriate values to each field, and then call the function SetCurrentConsoleFontEx().
You might also use the function GetCurrentConsoleFontEx
to populate the structure with the current values.