Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 Pocket PC 2003 设备上有进程“A”的句柄。我需要确定该进程是否仍在从进程“B”运行。进程“B”是用 Embedded Visual C++ 4.0 编写的。
如果调用函数时进程正在运行,GetExitCodeProcess 将返回 STILL_ACTIVE。
进程句柄是可等待的。当进程退出时,它们会收到信号 - 将释放任何等待的线程。您可以将它们与 WaitForSingleObject、WaitForMultipleObjects 等一起使用。