2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-14 12:42:11 +00:00

Worked around a Borland problem

[SVN r38037]
This commit is contained in:
Nicola Musatti
2007-06-19 07:04:20 +00:00
parent 97681fd7eb
commit 85f564d2e0

View File

@@ -1195,7 +1195,10 @@ static void close_alert(HANDLE process)
go any further */
if (pid)
{
PROCESS_HANDLE_ID p = {process, pid};
//PROCESS_HANDLE_ID p = {process, pid};
PROCESS_HANDLE_ID p;
p.h = process;
p.pid = pid;
EnumWindows(&close_alert_window_enum, (LPARAM) &p);
}
}