从桌面应用程序终止 WinCE 设备进程
我正在将文件从桌面复制到 WinCE 设备(通过 RAPI API< /a>),如果WinCE主程序正在运行,我需要杀死它,更新并重新启动它。
到目前为止,我设法复制文件并毫无问题地启动主程序,但我找不到通过 RAPI 终止进程的方法(有 CeCreateProcess 函数,但没有 CeTerminateProcess 或类似函数)
目前我正在生成 RapiProc.exe -k \MyDir\MyProcess.exe 它有效,但我找不到通过 RAPI 执行此操作的方法
有什么想法吗?
TIA
I'm copying files from the desktop to a WinCE device (via the RAPI API), and if the main WinCE program is running, I need to kill it, update and restart it again.
So far, I manage to copy the files and start the main program with no problem, but I cannot found a way to terminate a process via RAPI (there is a CeCreateProcess function but no CeTerminateProcess or similar)
Currently i'm spawning RapiProc.exe -k \MyDir\MyProcess.exe and it works, but I cannot find the way to do it via RAPI
Any ideas?
TIA
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
RAPI 不提供终止进程的直接方法。您必须创建提供该功能的自定义 RAPI DLL。作为一个很好的起点, 这篇博客文章展示了如何通过自定义 RAPI dll 检索设备 ID。只需修改它以广播 WM_CLOSE,然后广播 TerminateProcess(如果失败)。
RAPI doesn't provide a direct way to kill a process. You must create a custom RAPI DLL that provides that capability. As a good starting point, this blog article shows how to retrieve the device ID via a custom RAPI dll. Just modify it to broadcast a WM_CLOSE and then a TerminateProcess if that fails.