home *** CD-ROM | disk | FTP | other *** search
/ Amiga Developer CD v1.2 / amidev_cd_12.iso / inc&ad2.0 / includes / clib / wb_protos.h < prev   
C/C++ Source or Header  |  1992-09-01  |  2KB  |  54 lines

  1. #ifndef  CLIB_WB_PROTOS_H
  2. #define  CLIB_WB_PROTOS_H
  3. /*
  4. **    $Filename: clib/wb_protos.h $
  5. **    $Release: 2.04 Includes, V37.4 $
  6. **    $Revision: 37.3 $
  7. **    $Date: 91/03/04 $
  8. **
  9. **    C prototypes. For use with 32 bit integers only.
  10. **
  11. **    (C) Copyright 1990-1991 Commodore-Amiga, Inc.
  12. **        All Rights Reserved
  13. */
  14. /*--- functions in V36 or higher (distributed as Release 2.0) ---*/
  15. #ifndef  EXEC_TYPES_H
  16. #include <exec/types.h>
  17. #endif
  18. #ifndef  WORKBENCH_WORKBENCH_H
  19. #include <workbench/workbench.h>
  20. #endif
  21. #ifndef  INTUITION_INTUITION_H
  22. #include <intuition/intuition.h>
  23. #endif
  24. #ifndef  UTILITY_TAGITEM_H
  25. #include <utility/tagitem.h>
  26. #endif
  27.  
  28. struct AppWindow *AddAppWindowA( unsigned long id, unsigned long userdata,
  29.     struct Window *window, struct MsgPort *msgport,
  30.     struct TagItem *taglist );
  31. struct AppWindow *AddAppWindow( unsigned long id, unsigned long userdata,
  32.     struct Window *window, struct MsgPort *msgport, Tag tag1, ... );
  33.  
  34. BOOL RemoveAppWindow( struct AppWindow *appWindow );
  35.  
  36. struct AppIcon *AddAppIconA( unsigned long id, unsigned long userdata,
  37.     UBYTE *text, struct MsgPort *msgport, struct FileLock *lock,
  38.     struct DiskObject *diskobj, struct TagItem *taglist );
  39. struct AppIcon *AddAppIcon( unsigned long id, unsigned long userdata,
  40.     UBYTE *text, struct MsgPort *msgport, struct FileLock *lock,
  41.     struct DiskObject *diskobj, Tag tag1, ... );
  42.  
  43. BOOL RemoveAppIcon( struct AppIcon *appIcon );
  44.  
  45. struct AppMenuItem *AddAppMenuItemA( unsigned long id, unsigned long userdata,
  46.     UBYTE *text, struct MsgPort *msgport, struct TagItem *taglist );
  47. struct AppMenuItem *AddAppMenuItem( unsigned long id, unsigned long userdata,
  48.     UBYTE *text, struct MsgPort *msgport, Tag tag1, ... );
  49.  
  50. BOOL RemoveAppMenuItem( struct AppMenuItem *appMenuItem );
  51.  
  52.  
  53. #endif     /* CLIB_WB_PROTOS_H */
  54.