2 Copyright © 1995-2001, The AROS Development Team. All rights reserved.
8 #include <exec/types.h>
9 #include <utility/utility.h>
10 #include <utility/tagitem.h>
11 #include <aros/libcall.h>
13 /*****************************************************************************
16 #include <proto/utility.h>
18 AROS_LH2(struct TagItem
*, FindTagItem
,
21 AROS_LHA(Tag
, tagValue
, D0
),
22 AROS_LHA(const struct TagItem
*, tagList
, A0
),
25 struct UtilityBase
*, UtilityBase
, 5, Utility
)
45 *****************************************************************************/
50 const struct TagItem
*tagptr
= tagList
;
52 while( (tag
= NextTagItem(&tagptr
)) )
54 if(tag
->ti_Tag
== tagValue
) return tag
;