Exemplo n.º 1
0
static void
_moddeinit(void)
{
	/* disable the umode and remove it from the available list */
	user_modes['h'] = 0;
	construct_umodebuf();
}
Exemplo n.º 2
0
static int
_modinit(void)
{
	user_modes['C'] = find_umode_slot();
	construct_umodebuf();

	return 0;
}
Exemplo n.º 3
0
static int
_modinit(void)
{
	/* add the usermode to the available slot */
	user_modes['h'] = find_umode_slot();
	construct_umodebuf();

	return 0;
}
Exemplo n.º 4
0
static int
_modinit(void)
{
	/* add the usermode to the available slot */
	user_modes['F'] = find_umode_slot();
	user_mode_names['F'] = "hidecert";
	construct_umodebuf();

	return 0;
}
Exemplo n.º 5
0
static void
_moddeinit(void)
{
	user_modes['C'] = 0;
	construct_umodebuf();
}