Hey, is there a way to change the font size in a console application to something like 8x8 px? I've tried SetCurrentConsoleFontEx but this won't work with Windows XP. I've also tried some googled stuff but didn't get it to work. I'm using Windows XP SP3 and CodeBlocks 8.02 with GNU GCC Compiler.
Any help is appreciated.
There is 1 problem, you can't change the font of the console unless you use the SetCurrentConsoleFontEx().... But as far as i know it works with Windows XP
But it doesn't work. I'll get this error when I try to compile:
1 2 3
\Desktop\test.cpp||In function `int main()':|
\Desktop\test.cpp|27|error: `SetCurrentConsoleFontEx' was not declared in this scope|
||=== Build finished: 1 errors, 0 warnings ===|
Altough I have defined "_WIN32_WINNT 0x0500". Could it be my compiler?