@@ -1,26 +0,0 @@
-
-{
- tagutils.inc
- Some handy functions to deal with taglist.
- At least until fpc have array of const.
-}
-procedure SetTags(ti : pTagItem; item, data : Longint);
-begin
- with ti^ do begin
- ti_Tag := item;
- ti_Data := data;
- end;
-end;
-function TagItem(item, data : Longint): tTagItem;
-var
- temp : tTagItem;
- with temp do begin
- TagItem := temp;