周永强

  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

2014年1月9日

摘要: 1 BOOL WINAPI HandlerRoutine(DWORD dwCtrlType) 2 { 3 if (dwCtrlType == CTRL_CLOSE_EVENT) 4 { 5 FreeConsole(); 6 } 7 return TRUE; 8 } 9 10 //开启控制台11 AllocConsole(); 12 SetConsoleCtrlHandler(HandlerRoutine, TRUE);13 // freopen("CONOUT$", "w+t", stdout);14 // freopen("CONIN$&qu 阅读全文
posted @ 2014-01-09 23:17 周永强 阅读(240) 评论(0) 推荐(0) 编辑