ShellExecuteEx如何关闭打开的pdf阅读器
时间: 2023-02-12 22:36:19 浏览: 185
PDF阅读器.EXE
要关闭使用ShellExecuteEx打开的PDF阅读器,需要使用Windows API函数来结束进程。可以使用以下步骤来实现:
1. 使用函数FindWindow找到PDF阅读器的窗口句柄。
2. 使用函数GetWindowThreadProcessId获取该窗口对应的进程ID。
3. 使用函数OpenProcess打开该进程。
4. 使用函数TerminateProcess结束该进程。
5. 使用函数CloseHandle关闭该进程句柄。
阅读全文