WinKill()源代码

时间:2015-09-01 16:49:44

标签: c++ autoit

有人可以共享WinKill() from AutoIt的源代码吗?

我想知道它如何与消息一起使用(是/否/取消)以确保它处理得当。我想用它来清除意外弹出窗口中的桌面。

2 个答案:

答案 0 :(得分:2)

它不是一个开源功能。你无法知道消息来源。然而,理解起来并不复杂。这是一个简单的函数,有很多If ... then ...调用检查标准,然后简单地杀死窗口。与使用cmd命令执行的操作非常相似。

AutoIt具有本机和标准功能。原生的是开源的,您可以在Include文件夹中的AutoIt安装目录中找到它们。 另一方面,标准的不是开源的。它们是用C ++编写的。

答案 1 :(得分:2)

正如我们在下面的AutoIt最新开源版本(以前是开源版本)和可用here中看到的源代码中所见,该函数将WM_CLOSE消息发送到窗口。如果窗口没有在500ms关闭,那么它会终止创建窗口的进程。

///////////////////////////////////////////////////////////////////////////////
// WinKill()
// Closes a window - uses more force than WinClose
///////////////////////////////////////////////////////////////////////////////

AUT_RESULT AutoIt_Script::F_WinKill(VectorVariant &vParams, Variant &vResult)
{
    Win_WindowSearchInit(vParams);

    if (Win_WindowSearch() == false)
        return AUT_OK;                          // Required window not found

    Util_WinKill(m_WindowSearchHWND);
    Util_Sleep(m_nWinWaitDelay);                // Briefly pause before continuing

    return AUT_OK;

} // WinKill()

///////////////////////////////////////////////////////////////////////////////
// Util_WinKill()
//
// Closes a window with extreme predjudice
//
///////////////////////////////////////////////////////////////////////////////

void Util_WinKill(HWND hWnd)
{
    DWORD      dwResult;

    LRESULT lResult = SendMessageTimeout(hWnd, WM_CLOSE, 0, 0, SMTO_ABORTIFHUNG, 500, &dwResult);   // wait 500ms

    if( !lResult )
    {
        // Use more force - Mwuahaha

        // Get the ProcessId for this window.
        DWORD   pid;
        GetWindowThreadProcessId( hWnd, &pid );

        // Open the process with all access.
        HANDLE hProcess = OpenProcess(PROCESS_ALL_ACCESS, FALSE, pid);

        // Terminate the process.
        TerminateProcess(hProcess, 0);

        CloseHandle(hProcess);
    }

} // Util_WinKill()