#ifndef CLIB_CLICKTAB_PROTOS_H #define CLIB_CLICKTAB_PROTOS_H /* ** $VER: clicktab_protos.h 47.1 (30.11.2021) ** ** 'C' prototypes. For use with 32 bit integers only. ** ** Copyright (C) 2019-2022 Hyperion Entertainment CVBA. ** Developed under license. */ #ifdef __cplusplus extern "C" { #endif /* __cplusplus */ #ifndef EXEC_LIBRARIES_H #include #endif #ifndef INTUITION_INTUITION_H #include #endif #ifndef INTUITION_CLASSES_H #include #endif #ifndef UTILITY_TAGITEM_H #include #endif #ifndef GADGETS_CLICKTAB_H #include #endif /*--- functions in V40 or higher (Release 3.1) ---*/ Class *CLICKTAB_GetClass( VOID ); struct Node *AllocClickTabNodeA( struct TagItem *tags ); struct Node *AllocClickTabNode( Tag firstTag, ... ); VOID FreeClickTabNode( struct Node *node ); VOID SetClickTabNodeAttrsA( struct Node *node, struct TagItem *tags ); VOID SetClickTabNodeAttrs( struct Node *node, ... ); VOID GetClickTabNodeAttrsA( struct Node *node, struct TagItem *tags ); VOID GetClickTabNodeAttrs( struct Node *node, ... ); #ifdef __cplusplus } #endif /* __cplusplus */ #endif /* CLIB_CLICKTAB_PROTOS_H */