#ifndef __MW_LOGO_H__ #define __MW_LOGO_H__ #include #define NONE "\033[m" #define RED "\033[0;41;32m" //error #define LIGHT_RED "\033[1;41m" #define GREEN "\033[0;42;33m" //ci send #define LIGHT_GREEN "\033[1;42m" #define BLUE "\033[0;44;35m" //ci notify #define LIGHT_BLUE "\033[1;44m" #define DARY_GRAY "\033[1;40m" #define CYAN "\033[0;46m" //info #define LIGHT_CYAN "\033[1;46m" #define PURPLE "\033[0;45m" //test #define LIGHT_PURPLE "\033[1;45m" #define BROWN "\033[0;43m" #define YELLOW "\033[1;43m" //warning #define LIGHT_GRAY "\033[0;47m" #define WHITE "\033[1;47m" enum Logo_align_t { Logo_Origin_Align =0, /*!< picture aligned the original point*/ Logo_Center_Align =1, /*!< picture aligned the Center*/ //We don't support Logo_Center_Align , jim.hsu 2012/07/04 }; enum Logo_Status_t { Logo_Start_Up= 1,/*!< the logo is for start up.*/ Logo_Start_Up_AlignOrigin,/*!< the logo is for start up align original.*/ Logo_Pic_Show,/*!< the showing logo only.*/ Logo_Change_Pic_Show,/*!< changing the showing logo*/ Logo_BG_Show,/*!< showing the background*/ Logo_Change_BG_Show,/*!