Browse Source

old include

nils 22 years ago
parent
commit
7bd1337e48
1 changed files with 0 additions and 26 deletions
  1. 0 26
      packages/extra/amunits/inc/tagutils.inc

+ 0 - 26
packages/extra/amunits/inc/tagutils.inc

@@ -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;
-begin
-   with temp do begin
-      ti_Tag := item;
-      ti_Data := data;
-   end;
-   TagItem := temp;
-end;