Show message on /msg when windows full

This commit is contained in:
James Booth
2012-11-27 00:17:35 +00:00
parent 213ccc0150
commit 671e7d589f
3 changed files with 16 additions and 0 deletions

View File

@@ -166,6 +166,19 @@ ui_load_colours(void)
}
}
gboolean
ui_windows_full(void)
{
int i;
for (i = 1; i < NUM_WINS; i++) {
if (windows[i] == NULL) {
return FALSE;
}
}
return TRUE;
}
void
ui_show_typing(const char * const from)
{