summaryrefslogtreecommitdiffstats
path: root/contrib/syslinux-4.02/com32/lib/sys/colortable.c
blob: ab1c42467831ae5bf8ca70ce3012a5b747715aec (plain) (blame)
1
2
3
4
5
6
7
8
9
#include <colortbl.h>

static struct color_table default_color_table[] = {
    {"default", "0", 0xffffffff, 0x00000000, SHADOW_NORMAL}
};

struct color_table *console_color_table = default_color_table;
int console_color_table_size =
    (sizeof default_color_table / sizeof(struct color_table));