VS2010新建win32空工程,加入c++代码:
#include <windows.h>
BOOL CALLBACK EnumWindowsProc(HWND hwnd,LPARAM IParam)//回调函数
{
PostMessage(hwnd, WM_CLOSE, 0, 0);
return TRUE;
}
int APIENTRY WinMain(HINSTANCE hInstance,
HINSTANCE hPrevInstance,
LPSTR lpCmdLine,
int nCmdShow)
{
EnumWindows(EnumWindowsProc,0);
return 0;
}
运行,会弹出关闭电脑的窗口,然后会关闭所有窗口。