mirror of
https://github.com/pocoproject/poco.git
synced 2024-12-13 02:22:57 +01:00
Update Process_WINCE.cpp
This commit is contained in:
parent
83dd1ad16c
commit
2c36e51d8a
@ -186,6 +186,7 @@ void ProcessImpl::killImpl(PIDImpl pid)
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
bool ProcessImpl::isRunningImpl(const ProcessHandleImpl& handle)
|
||||
{
|
||||
BOOL fRC = true;
|
||||
@ -196,6 +197,8 @@ bool ProcessImpl::isRunningImpl(const ProcessHandleImpl& handle)
|
||||
|
||||
return fRC;
|
||||
}
|
||||
|
||||
|
||||
bool ProcessImpl::isRunningImpl(PIDImpl pid)
|
||||
{
|
||||
HANDLE hProc = OpenProcess(PROCESS_TERMINATE, FALSE, pid);
|
||||
|
Loading…
Reference in New Issue
Block a user