Esempio n. 1
0
File: sasl.c Progetto: PChat/PChat
static int
add_info (char const* login, char const* password, char const* network)
{
	char buffer[512];

	sprintf (buffer, "%s:%s", login, password);
	return xchat_pluginpref_set_str (ph, network, buffer);
}
Esempio n. 2
0
static
XS (XS_XChat_plugin_pref_set)
{
	dMARK;
	dAX;

	XSRETURN_IV ((IV) xchat_pluginpref_set_str (ph, SvPV_nolen (ST (0)),
													SvPV_nolen (ST (1))));
}