From 9a69869d392ca9ac9e2d845dec5f4dfecdbf3456 Mon Sep 17 00:00:00 2001 From: Curtis McEnroe Date: Thu, 13 Sep 2018 15:17:41 -0400 Subject: Add IRCDefault to colors enum --- chat.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'chat.h') diff --git a/chat.h b/chat.h index f9ffff3..b72e664 100644 --- a/chat.h +++ b/chat.h @@ -56,7 +56,7 @@ const struct Tag TagVerbose; struct Tag tagFind(const char *name); struct Tag tagFor(const char *name); -enum { +enum IRCColor { IRCWhite, IRCBlack, IRCBlue, @@ -73,6 +73,7 @@ enum { IRCPink, IRCGray, IRCLightGray, + IRCDefault = 99, }; enum { IRCBold = 002, @@ -88,7 +89,7 @@ struct Format { size_t len; bool split; bool bold, italic, underline, reverse; - int fg, bg; + enum IRCColor fg, bg; }; void formatReset(struct Format *format); bool formatParse(struct Format *format, const wchar_t *split); -- cgit 1.4.1