- 1 隐藏控制台命令窗口
#ifdef _MSC_VER#pragma comment( linker, "/subsystem:\"windows\" /entry:\"mainCRTStartup\"" )#endif
- 2将控制台入口改为Win32入口
#ifdef _MSC_VER#pragma comment(linker, "/entry:WinMainCRTStartup /subsystem:windows") #endif
本文共 275 字,大约阅读时间需要 1 分钟。
#ifdef _MSC_VER#pragma comment( linker, "/subsystem:\"windows\" /entry:\"mainCRTStartup\"" )#endif
#ifdef _MSC_VER#pragma comment(linker, "/entry:WinMainCRTStartup /subsystem:windows") #endif
转载于:https://www.cnblogs.com/Searchor/p/5755680.html