Jelajahi Sumber

old include

nils 23 tahun lalu
induk
melakukan
7bd1337e48
1 mengubah file dengan 0 tambahan dan 26 penghapusan
  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;