码迷,mamicode.com
首页 > 其他好文 > 详细

AllocConsole

时间:2016-04-13 18:22:39      阅读:130      评论:0      收藏:0      [点我收藏+]

标签:

C++ Code :

 
  1. #define CONSOLE_LOG 1
  2. #if CONSOLE_LOG
  3.     AllocConsole();
  4.     SetConsoleTitle(_T("Debug Console for output"));
  5.     freopen("CONOUT$","w+t",stdout);
  6.     freopen("CONIN$","r+t",stdin);
  7. #endif
WriteConsole, GetStdHandle....

AllocConsole

标签:

原文地址:http://www.cnblogs.com/wanxianga/p/5388052.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!