home *** CD-ROM | disk | FTP | other *** search
/ Amiga MA Magazine 1998 #6 / amigamamagazinepolishissue1998.iso / coders / biblioteki / c_library / gadtools34 / nl_utility.h < prev    next >
C/C++ Source or Header  |  1998-09-26  |  1KB  |  44 lines

  1.  
  2.  
  3. #ifndef HEADERS_NL_UTILITY_H
  4. #define HEADERS_NL_UTILITY_H 1
  5.  
  6.  
  7. /*  New.lib/utility.h  $ 27/01/93 MT $  */
  8. /*                                      */
  9. /*  File header per l'uso di GTE.lib.   */
  10. /*  Per usare queste funzioni deve      */
  11. /*  essere aperta (solo sotto 2.x+) la  */
  12. /*  utility.library.                    */
  13.  
  14.  
  15. #include "exec/types.h"
  16. #include "utility/tagitem.h"
  17.  
  18.  
  19. /* ---------------------- Funzioni di interfaccia ---------------------- */
  20.  
  21. /* Funzioni di gestione dei Tags */
  22.  
  23. struct TagItem *NL_FindTagItem(Tag tagval, struct TagItem *taglist);
  24. ULONG NL_GetTagData(Tag tagval, ULONG defaultdata, struct TagItem *taglist);
  25. struct TagItem *NL_NextTagItem(struct TagItem **taglistptr);
  26.  
  27. /* --------------------------------------------------------------------- */
  28.  
  29.  
  30. /* ---------------------- Funzioni di emulazione ----------------------- */
  31.  
  32. /* Funzioni di gestione dei Tags */
  33.  
  34. struct TagItem *EF_FindTagItem(Tag tagval, struct TagItem *taglist);
  35. ULONG EF_GetTagData(Tag tagval, ULONG defaultdata, struct TagItem *taglist);
  36. struct TagItem *EF_NextTagItem(struct TagItem **taglistptr);
  37.  
  38. /* --------------------------------------------------------------------- */
  39.  
  40.  
  41. #endif
  42.  
  43.  
  44.