使 minGW 控制台程序在没有控制台的情况下运行
我在 MinGW 中制作了一个控制台程序,它执行网络和文件操作。然而,它是一个控制台程序。如何让它安静地运行,没有控制台,没有窗口?
I made a console program in MinGW which performs network and file actions. However, its a console program. How do I make it run silently, no consoles, no windows?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
试试这个:
ShowWindow(GetConsoleWindowHandle(),SW_HIDE);
GetConsoleWindowHandle()
将窗口句柄返回到控制台。ShowWindow(..)
可用于改变可见性。Try this:
ShowWindow(GetConsoleWindowHandle(),SW_HIDE);
GetConsoleWindowHandle()
returns the window handle to the console.ShowWindow(..)
can be used to alter the visibilty.