Win32隐藏输出console窗口
Posted For The Glory
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Win32隐藏输出console窗口相关的知识,希望对你有一定的参考价值。
#include <Windows.h> void HideConsole() { ::ShowWindow(::GetConsoleWindow(), SW_HIDE); } void ShowConsole() { ::ShowWindow(::GetConsoleWindow(), SW_SHOW); } bool IsConsoleVisible() { return (::IsWindowVisible(::GetConsoleWindow()) != FALSE); }
以上是关于Win32隐藏输出console窗口的主要内容,如果未能解决你的问题,请参考以下文章
Win32 Console Application和cpp 。请问在vc++中写程序,新建Win32 Console Application和新建一个cpp的区