Skip to content

Latest commit

 

History

History
38 lines (21 loc) · 942 Bytes

CppCloseForegroundWindow.md

File metadata and controls

38 lines (21 loc) · 942 Bytes

 

 

 

 

 

 

CloseForegroundWindow us a Windows code snippet to minimize the foreground window.

 


#include <windows.h> //From http://www.richelbilderbeek.nl/CppCloseForegroundWindow.htm void CloseForegroundWindow() {   const HWND handle = GetForegroundWindow();   CloseWindow(handle); }