关于进程和生成它的进程 (win32/C)

发布于 2024-11-03 11:11:55 字数 270 浏览 0 评论 0原文

我有一个应用程序,通常会由另一个应用程序生成。 UI 和行为会略有不同,具体取决于所述应用程序是由用户直接打开还是生成。我如何确定它是由用户启动还是衍生?

我有几个想法,但它们似乎不可行。

  1. 如果有一种方法可以通过 CreateProcess() 发送额外的应用程序特定参数,这会很简单,但我找不到如何做到这一点。

  2. 如果我可以找到父进程的句柄,我可以确定它是否已生成,但我不知道如何做到这一点。

请帮忙!

I have an app that will usually be spawned by another app. The UI and behaviour will vary a bit depending on whether the said app was opened directly by the user or spawned. How can I determine if it was launched by the user or spawned?

I have a couple of ideas but they don't seem doable.

  1. If there was a way of sending extra app specific param via CreateProcess() this would be simple but I can't find how to do that.

  2. If I can find the handle of the parent process, I can determine if it was spawned or not but I can't see how to do that.

Please help!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

凯凯我们等你回来 2024-11-10 11:11:55

如果有办法发送额外的
通过 CreateProcess() 的应用程序特定参数

那么您可以控制调用应用程序吗?如果是的话,这肯定是命令行的用途吗?

CreateProcess( NULL, "C:\\app.exe /launched_by_app2" ...)

If there was a way of sending extra
app specific param via CreateProcess()

So you have control of the invoking application? If so surely this is what command lines are for?

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