Exemple #1
0
void buddy_float(t_buddy *x, double f)
{
	t_atom a;
	
	a.a_type = A_FLOAT;
	a.a_w.w_float = f;
	buddy_atom(x,&a);
}
Exemple #2
0
void buddy_int(t_buddy *x, long n)
{
	t_atom a;
	
	a.a_type = A_LONG;
	a.a_w.w_long = n;
	buddy_atom(x,&a);
}
Exemple #3
0
void buddy_int(t_buddy *x, long n)
{
	t_atom a;
	atom_setlong(&a, n);
	buddy_atom(x,&a);
}
Exemple #4
0
void buddy_float(t_buddy *x, double f)
{
	t_atom a;
	atom_setfloat(&a, f);
	buddy_atom(x,&a);
}