从桌面应用程序终止 WinCE 设备进程

发布于 2024-09-12 19:11:55 字数 487 浏览 5 评论 0原文

我正在将文件从桌面复制到 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

撑一把青伞 2024-09-19 19:11:55

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文