From e20c64d5d72e341abf8dc3cb38d7cfec371faafc Mon Sep 17 00:00:00 2001 From: Curtis McEnroe Date: Fri, 22 Feb 2019 14:11:50 -0500 Subject: Reorganize UI code for the umpteenth time It's actually in a good state now, I think. --- chat.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'chat.h') diff --git a/chat.h b/chat.h index bd889f4..b07aa42 100644 --- a/chat.h +++ b/chat.h @@ -116,13 +116,13 @@ void ircQuit(const char *mesg); void uiInit(void); void uiShow(void); void uiHide(void); -void uiExit(void); void uiDraw(void); void uiRead(void); -void uiPrompt(void); +void uiExit(int status); -void uiWindowTag(struct Tag tag); -void uiWindowNum(int num); +void uiPrompt(bool nickChanged); +void uiShowTag(struct Tag tag); +void uiShowNum(int num); void uiCloseTag(struct Tag tag); enum UIHeat { @@ -130,7 +130,7 @@ enum UIHeat { UIWarm, UIHot, }; -void uiLog(struct Tag tag, enum UIHeat heat, const wchar_t *line); +void uiLog(struct Tag tag, enum UIHeat heat, const wchar_t *str); void uiFmt(struct Tag tag, enum UIHeat heat, const wchar_t *format, ...); enum TermMode { -- cgit 1.4.1