/*
 *	File:					Active().h
 *	Description:	Returns the active item in a listview
 *
 *	(C) 1993, Ketil Hunn
 *
 */


__inline ULONG Active(Object *list)
{
	ULONG tmp;

	get(list, MUIA_List_Active, &tmp);
	return tmp;
}
