1 #ifndef CLIB_THUMBNAILS_H
    2 #define CLIB_THUMBNAILS_H
    3 
    4 #include <exec/types.h>
    5 #include <utility/tagitem.h>
    6 
    7 #ifdef __cplusplus
    8 extern "C" {
    9 #endif /* __cplusplus */
   10 
   11 APTR ThbGenerateThumbnailA(CONST_STRPTR path, struct TagItem *tags);
   12 VOID ThbDeleteThumbnail(APTR thumbnail);
   13 ULONG ThbGetAttrsA(APTR thumbnail, struct TagItem *tags);
   14 ULONG ThbNextFrame(APTR thumbnail);
   15 
   16 #ifdef __cplusplus
   17 }
   18 #endif /* __cplusplus */
   19 
   20 
   21 #endif
   22