view console/gntui.c @ 19795:38e4a4b404e5

[gaim-migrate @ 16685] add delte group SOAP operation code ok committed by MaYuan<mayuan2006@gmail.com> committer: Ethan Blanton <elb@pidgin.im>
author Ma Yuan <mayuan2006@gmail.com>
date Thu, 10 Aug 2006 15:43:55 +0000
parents 0e1e59770cb0
children d341b5ac1a78
line wrap: on
line source

#include "gntui.h"

void init_gnt_ui()
{
	gnt_init();

	wbkgdset(stdscr, '\0' | COLOR_PAIR(GNT_COLOR_NORMAL));
	werase(stdscr);
	/*box(stdscr, ACS_VLINE, ACS_HLINE);*/
	wrefresh(stdscr);

	/* Initialize the buddy list */
	gg_blist_init();
	gaim_blist_set_ui_ops(gg_get_blist_ui_ops());

	gnt_main();
}