Hi,
I'm using SFML, setting up my game in full screen mode with:
//find computer's best resolution
RECT desktop;
const HWND hDesktop = GetDesktopWindow();
// Get the size of screen to the variable desktop
GetWindowRect(hDesktop, &desktop);
window = new sf::RenderWindow(sf::VideoMode(desktop.right, desktop.bottom), title, sf::Style::Fullscreen);
but it doesn't minimize the game when I hit CTRL ALT DEL and start the Task Manager. However, the behavior I expect is the window to be minimized if I start the Task Manager. How can I achieve this?
Thanks!