从另一个程序执行和捕获一个程序

发布于 2024-07-14 10:26:09 字数 119 浏览 7 评论 0原文

在 C 语言的 win32 编程中:

在另一个 win32 程序中执行 win32 控制台程序并使开始执行的程序捕获输出的最佳方法是什么? 目前我使程序将输出重定向到文件,但我确信我必须能够打开某种管道?

In win32 programming in C:

Whats the best way to execute a win32 console program within another win32 program, and have the program that started the execution capture the output? At the moment I made the program redirect output to a file, but I am sure I must be able to open some sort of pipe?

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

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

发布评论

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

评论(1

汹涌人海 2024-07-21 10:26:09

Use the CreateProcess Win32 API to start the child process.

Pass to it a STARTUPINFO structure with hStdInput, hStdOutput and hStdError handles set to file handles you opened (either real files or memory mapped files should work). You don't need to specify all three, you can redirect only the ones you really need; most common case is hStdOutput.

If you want to communicate with the child process (through hStdInput), you need to wait for it to initialize by calling WaitForInputIdle.

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