home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format 114 / af114sub.adf / GadToolsBox3.lzx / GadToolsBox3 / Developers / listview.gadget / include / clib / listview_protos.h
Encoding:
C/C++ Source or Header  |  1998-01-16  |  1004 b   |  32 lines

  1. #ifndef  CLIB_LISTVIEW_PROTOS_H
  2. #define  CLIB_LISTVIEW_PROTOS_H
  3.  
  4. /*
  5. **    $VER: listview_protos.h 1.0 (20.6.96)
  6. **
  7. **    C prototypes. For use with 32 bit integers only.
  8. **
  9. **    (C) Copyright 1997 Tomasz Muszynski
  10. */
  11.  
  12. #ifndef  EXEC_TYPES_H
  13. #include <exec/types.h>
  14. #endif
  15.  
  16. Class *GetListViewClass(void);
  17. void Tree_AddHead(struct LVList *,struct LVNode *);
  18. void Tree_AddSubHead(struct LVList *,struct LVNode *,struct LVNode *);
  19. void Tree_AddSubTail(struct LVList *,struct LVNode *,struct LVNode *);
  20. void Tree_AddTail(struct LVList *,struct LVNode *);
  21. void Tree_Insert(struct LVList *,struct LVNode *,struct LVNode *);
  22. void Tree_NewList(struct LVList *);
  23. struct LVNode *Tree_NextNode(struct LVNode *);
  24. struct LVNode *Tree_NextSubNode(struct LVNode *);
  25. struct LVNode *Tree_RemHead(struct LVList *);
  26. void Tree_Remove(struct LVNode *);
  27. struct LVNode *Tree_RemSubHead(struct LVNode *);
  28. struct LVNode *Tree_RemSubTail(struct LVNode *);
  29. struct LVNode *Tree_RemTail(struct LVList *);
  30.  
  31. #endif     /* CLIB_LISTVIEW_PROTOS_H */
  32.