예제 #1
0
파일: thing.c 프로젝트: apenwarr/ion1
WThing *first_thing(WThing *parent, const WObjDescr *descr)
{
	if(parent==NULL)
		return NULL;
	
	return get_next_thing(parent->t_children, descr);
}
예제 #2
0
파일: thing.c 프로젝트: Cougar/pwm
WThing *subthing(WThing *parent, int filt)
{
	if(parent==NULL)
		return NULL;
	
	return get_next_thing(parent->t_children, filt);
}
예제 #3
0
파일: thing.c 프로젝트: apenwarr/ion1
WThing *next_thing(WThing *first, const WObjDescr *descr)
{
	if(first==NULL)
		return NULL;
	
	return get_next_thing(first->t_next, descr);
}
예제 #4
0
파일: thing.c 프로젝트: Cougar/pwm
WThing *next_thing(WThing *first, int filt)
{
	if(first==NULL)
		return NULL;
	
	return get_next_thing(first->t_next, filt);
}