소스 검색

old include

nils 22 년 전
부모
커밋
7bd1337e48
1개의 변경된 파일0개의 추가작업 그리고 26개의 파일을 삭제
  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;