Exemplo n.º 1
0
static int is_legal_type_for_this_window(const objidx_t objnum)
{
	if (objnum == object_none)
		return 1;
	else
		return is_legal_type(vobjptr(objnum)->type);
}
Exemplo n.º 2
0
int is_legal_type_for_this_window(int objnum)
{
	if (objnum == -1)
		return 1;
	else
		return is_legal_type(Objects[objnum].type);
}
Exemplo n.º 3
0
static int is_legal_type_for_this_window(objnum_t objnum)
{
	if (objnum == object_none)
		return 1;
	else
		return is_legal_type(Objects[objnum].type);
}