TheCrappyProgrammer
Programmer
How would I programmically obtain the number of colors that the computer is using? (i.e.: 256, 16 bit, 24 bit)
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
DEVMODE dm;
dm.dmSize = sizeof(DEVMODE);
EnumDisplaySettings( NULL, ENUM_CURRENT_SETTINGS, &dm );