博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Win32隐藏输出console窗口
阅读量:4960 次
发布时间:2019-06-12

本文共 298 字,大约阅读时间需要 1 分钟。

#include 
void HideConsole(){ ::ShowWindow(::GetConsoleWindow(), SW_HIDE);}void ShowConsole(){ ::ShowWindow(::GetConsoleWindow(), SW_SHOW);}bool IsConsoleVisible(){ return (::IsWindowVisible(::GetConsoleWindow()) != FALSE);}

 

转载于:https://www.cnblogs.com/beeasy/p/6131373.html

你可能感兴趣的文章
jw player参数设定(转)
查看>>
mysql 不常用备忘
查看>>
Mybatis自动化生成代码
查看>>
asp.net 动态添加多附件上传.
查看>>
sscanf()函数
查看>>
WEEX学习网站
查看>>
uDig介绍
查看>>
后台调用外部程序的完美实现
查看>>
python随机数random模块
查看>>
03-body标签中相关标签
查看>>
JavaScript:对Object对象的一些常用操作总结
查看>>
node assert.equal()
查看>>
buf.readUIntBE()
查看>>
Beta 冲刺(1/7)
查看>>
【luogu2747】 [USACO5.4]周游加拿大Canada Tour[动态规划]
查看>>
ubuntu安装mysql 时未提示输入密码
查看>>
L1-006 连续因子
查看>>
RabbitMQ入门(4)——路由(Routing)
查看>>
POJ 1330
查看>>
poj 3687(拓扑排序)
查看>>