forked from PsychoticNinja/irssi
numbers are colored with the highlight color in activity statusbar item. git-svn-id: http://svn.irssi.org/repos/irssi/trunk@398 dbcabf3a-b0e7-0310-adc4-f8d773084564
31 lines
364 B
C
31 lines
364 B
C
#ifndef __GUI_PRINTTEXT_H
|
|
#define __GUI_PRINTTEXT_H
|
|
|
|
enum
|
|
{
|
|
BLACK = 0,
|
|
BLUE,
|
|
GREEN,
|
|
CYAN,
|
|
RED,
|
|
MAGENTA,
|
|
YELLOW,
|
|
WHITE,
|
|
BBLACK,
|
|
BBLUE,
|
|
BGREEN,
|
|
BCYAN,
|
|
BRED,
|
|
BMAGENTA,
|
|
BYELLOW,
|
|
BWHITE,
|
|
NUM_COLORS
|
|
};
|
|
|
|
extern int mirc_colors[];
|
|
|
|
void gui_printtext_init(void);
|
|
void gui_printtext_deinit(void);
|
|
|
|
#endif
|