网上的方法都是把窗口隐藏起来:
int main(int argc, char* argv[]){
AllocConsole();
HWND stealth = FindWindow("ConsoleWindowClass", argv[0]);
ShowWindow(stealth, SW_HIDE);
这样的确可以隐藏,但是还是会闪过一个黑色的窗口
所以,有没有从根本上杜绝该问题,使某个exe自始至终都不显示command窗口的方法?(不用到bat)
1
Bitex 2015-03-28 16:02:39 +08:00 1
#pragma comment(linker, "/subsystem:\"windows\" /entry:\"mainCRTStartup\"")
|