关不掉的窗口

#include "stdafx.h"


int WINAPI _tWinMain(HINSTANCE hInstanceExe, HINSTANCE, PTSTR pszCmdLine, int){
    
    HWND hWnd = GetDesktopWindow();

    while(1){
        ::MessageBox(hWnd, _T("FUCK YOU"), _T("整蛊程序"),  MB_OK); 
    }

    return(0);
}

MessageBox弹出窗口,while(1),无限循环执行

posted @ 2013-07-11 20:13  残雪孤侠  阅读(259)  评论(0编辑  收藏  举报