home *** CD-ROM | disk | FTP | other *** search
/ Amiga Developer CD 2.1 / Amiga Developer CD v2.1.iso / NDK / NDK_3.5 / Include / include_h / clib / reaction_lib_protos.h < prev    next >
Encoding:
C/C++ Source or Header  |  1999-11-02  |  2.1 KB  |  58 lines

  1. #ifndef CLIB_REACTION_LIB_PROTOS_H
  2. #define CLIB_REACTION_LIB_PROTOS_H
  3. /*
  4. **    $VER: reaction_lib_protos.h 44.1 (19.10.1999)
  5. **    Includes Release 44.1
  6. **
  7. **    C prototypes. For use with 32 bit integers only.
  8. **
  9. **    (C) Copyright 1987-1999 Amiga, Inc.
  10. **        All Rights Reserved
  11. */
  12.  
  13. #ifndef EXEC_TYPES_H
  14. #include <exec/types.h>
  15. #endif
  16.  
  17. #ifndef UTILITY_TAGITEM_H
  18. #include <utility/tagitem.h>
  19. #endif
  20.  
  21. #ifdef __cplusplus
  22. extern "C" {
  23. #endif
  24.  
  25. struct List *ChooserLabelsA( STRPTR * );
  26. struct List *ChooserLabels( STRPTR, ... );
  27. void FreeChooserLabels( struct List * );
  28. struct List *RadioButtonsA( STRPTR * );
  29. struct List *RadioButtons( STRPTR, ... );
  30. void FreeRadioButtons( struct List * );
  31. struct Window *OpenLayoutWindowTagList( struct Gadget *, struct Screen *, struct TagList * );
  32. struct Window *OpenLayoutWindowTags( struct Gadget *, struct Screen *, Tag, ... );
  33. UWORD GetCode( struct IntuiMessage * );
  34. struct ClassLibrary *OpenClass(STRPTR, ULONG);
  35. STRPTR OpenLibs(struct OpenLib *);
  36. void CloseLibs(struct OpenLib *);
  37. ULONG LibDoGadgetMethodA( struct Gadget *, struct Window *, struct Requester *, Msg );
  38. ULONG LibDoGadgetMethod( struct Gadget *, struct Window *, struct Requester *, Tag, ... );
  39. GetAttrsA( Object *o, struct TagItem *t );
  40. ULONG GetAttrs( Object *o, Tag t, ... );
  41. struct List *BrowserNodesA( STRPTR * );
  42. struct List *BrowserNodes( STRPTR, ... );
  43. void FreeBrowserNodes( struct List * );
  44. struct List *ClickTabsA( STRPTR * );
  45. struct List *ClickTabs( STRPTR, ... );
  46. void FreeClickTabs( struct List * );
  47. struct Node *LBAddNodeA( struct Gadget *, struct Window *, struct Requester *, struct Node *, struct TagItem * );
  48. ULONG LBEditNodeA( struct Gadget *, struct Window *, struct Requester *, struct Node *, struct TagItem * );
  49. struct Node *LBAddNode( struct Gadget *lb, struct Window *w, struct Requester *r, struct Node *n, ULONG tag, ... );
  50. ULONG LBEditNode( struct Gadget *lb, struct Window *w, struct Requester *r, struct Node *n, ULONG tag, ... );
  51. ULONG LBRemNode( struct Gadget *, struct Window *, struct Requester *, struct Node * );
  52.  
  53. #ifdef __cplusplus
  54. }
  55. #endif
  56.  
  57. #endif /* CLIB_REACTION_LIB_PROTOS_H */
  58.