예제 #1
0
파일: mesg.c 프로젝트: rennis250/sam
void
outTl(Hmesg type, long l)
{
	outstart(type);
	outlong(l);
	outsend();
}
예제 #2
0
파일: mesg.c 프로젝트: rennis250/sam
void
outTS(Hmesg type, String *s)
{
	outstart(type);
	outS(s);
	outsend();
}
예제 #3
0
파일: mesg.c 프로젝트: rennis250/sam
void
outTsS(Hmesg type, int s1, String *s)
{
	outstart(type);
	outshort(s1);
	outS(s);
	outsend();
}
예제 #4
0
파일: mesg.c 프로젝트: rennis250/sam
void
outTs(Hmesg type, int s)
{
	outstart(type);
	journaln(1, s);
	outshort(s);
	outsend();
}
예제 #5
0
파일: mesg.c 프로젝트: rennis250/sam
void
outTsv(Hmesg type, int s, vlong v)
{
	outstart(type);
	outshort(s);
	outvlong(v);
	journaln(1, v);
	outsend();
}
예제 #6
0
파일: mesg.c 프로젝트: rennis250/sam
void
outTsl(Hmesg type, int s, Posn l)
{
	outstart(type);
	outshort(s);
	outlong(l);
	journaln(1, l);
	outsend();
}
예제 #7
0
파일: mesg.c 프로젝트: siebenmann/sam
void
outTsv(Hmesg type, int s, Posn l)
{
    outstart(type);
    outshort(s);
    outvlong((void*)l);
    journaln(1, l);
    outsend();
}
예제 #8
0
파일: mesg.c 프로젝트: rennis250/sam
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();
}
예제 #9
0
파일: mesg.c 프로젝트: rennis250/sam
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();
}
예제 #10
0
파일: mesg.c 프로젝트: rennis250/sam
void
outT0(Hmesg type)
{
	outstart(type);
	outsend();
}