Exemple #1
0
void
outTl(Hmesg type, long l)
{
	outstart(type);
	outlong(l);
	outsend();
}
Exemple #2
0
void
outTS(Hmesg type, String *s)
{
	outstart(type);
	outS(s);
	outsend();
}
Exemple #3
0
void
outTsS(Hmesg type, int s1, String *s)
{
	outstart(type);
	outshort(s1);
	outS(s);
	outsend();
}
Exemple #4
0
void
outTs(Hmesg type, int s)
{
	outstart(type);
	journaln(1, s);
	outshort(s);
	outsend();
}
Exemple #5
0
void
outTsv(Hmesg type, int s, vlong v)
{
	outstart(type);
	outshort(s);
	outvlong(v);
	journaln(1, v);
	outsend();
}
Exemple #6
0
void
outTsl(Hmesg type, int s, Posn l)
{
	outstart(type);
	outshort(s);
	outlong(l);
	journaln(1, l);
	outsend();
}
Exemple #7
0
void
outTsv(Hmesg type, int s, Posn l)
{
    outstart(type);
    outshort(s);
    outvlong((void*)l);
    journaln(1, l);
    outsend();
}
Exemple #8
0
void
outTsll(Hmesg type, int s, Posn l1, Posn l2)
{
	outstart(type);
	outshort(s);
	outlong(l1);
	outlong(l2);
	journaln(1, l1);
	journaln(1, l2);
	outsend();
}
Exemple #9
0
void
outTslS(Hmesg type, int s1, Posn l1, String *s)
{
	outstart(type);
	outshort(s1);
	journaln(1, s1);
	outlong(l1);
	journaln(1, l1);
	outS(s);
	outsend();
}
Exemple #10
0
void
outT0(Hmesg type)
{
	outstart(type);
	outsend();
}