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

C 修改命令行文本颜色

时间:2014-07-30 11:59:33      阅读:199      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   io   for   div   new   amp   

#include <Windows.h>
#include <stdio.h>

int main()
{
    HANDLE h = GetStdHandle(STD_OUTPUT_HANDLE);
    WORD wOldColorAttrs;
    CONSOLE_SCREEN_BUFFER_INFO csbiInfo;

    /*
    * First save the current color information
    */
    GetConsoleScreenBufferInfo(h, &csbiInfo);
    wOldColorAttrs = csbiInfo.wAttributes;

    /*
    * Set the new color information
    */
    SetConsoleTextAttribute(h, FOREGROUND_RED | FOREGROUND_INTENSITY);

    printf("This is a test\n");
    /*
    * Restore the original colors
    */
    SetConsoleTextAttribute(h, wOldColorAttrs);
}

 

C 修改命令行文本颜色,布布扣,bubuko.com

C 修改命令行文本颜色

标签:style   blog   color   io   for   div   new   amp   

原文地址:http://www.cnblogs.com/emyueguang/p/3877307.html

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