home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 4 / FreshFish_May-June1994.bin / bbs / cbm / nduk-v37.lha / V37 / include / clib / commodities_protos.h < prev    next >
C/C++ Source or Header  |  1991-11-27  |  2KB  |  75 lines

  1. #ifndef  CLIB_COMMODITIES_PROTOS_H
  2. #define  CLIB_COMMODITIES_PROTOS_H
  3. /*
  4. **    $Filename: clib/commodities_protos.h $
  5. **    $Release: 2.04 Includes, V37.4 $
  6. **    $Revision: 37.6 $
  7. **    $Date: 91/11/12 $
  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. #ifndef  EXEC_TYPES_H
  15. #include <exec/types.h>
  16. #endif
  17. #ifndef  EXEC_NODES_H
  18. #include <exec/nodes.h>
  19. #endif
  20. #ifndef  LIBRARIES_COMMODITIES_H
  21. #include <libraries/commodities.h>
  22. #endif
  23. #ifndef  DEVICES_INPUTEVENT_H
  24. #include <devices/inputevent.h>
  25. #endif
  26. #ifndef  DEVICES_KEYMAP_H
  27. #include <devices/keymap.h>
  28. #endif
  29. /*--- functions in V36 or higher (distributed as Release 2.0) ---*/
  30.  
  31. /*  OBJECT UTILITIES */
  32.  
  33. CxObj *CreateCxObj( unsigned long type, long arg1, long arg2 );
  34. CxObj *CxBroker( struct NewBroker *nb, LONG *error );
  35. LONG ActivateCxObj( CxObj *co, long true );
  36. void DeleteCxObj( CxObj *co );
  37. void DeleteCxObjAll( CxObj *co );
  38. ULONG CxObjType( CxObj *co );
  39. LONG CxObjError( CxObj *co );
  40. void ClearCxObjError( CxObj *co );
  41. void SetCxObjPri( CxObj *co, long pri );
  42.  
  43. /*  OBJECT ATTACHMENT */
  44.  
  45. void AttachCxObj( CxObj *headObj, CxObj *co );
  46. void EnqueueCxObj( CxObj *headObj, CxObj *co );
  47. void InsertCxObj( CxObj *headObj, CxObj *co, CxObj *pred );
  48. void RemoveCxObj( CxObj *co );
  49.  
  50. /*  TYPE SPECIFIC */
  51.  
  52. void SetTranslate( CxObj *translator, struct InputEvent *events );
  53. void SetFilter( CxObj *filter, STRPTR text );
  54. void SetFilterIX( CxObj *filter, IX *ix );
  55. LONG ParseIX( STRPTR description, IX *ix );
  56.  
  57. /*  COMMON MESSAGE */
  58.  
  59. ULONG CxMsgType( CxMsg *cxm );
  60. APTR CxMsgData( CxMsg *cxm );
  61. LONG CxMsgID( CxMsg *cxm );
  62.  
  63. /*  MESSAGE ROUTING */
  64.  
  65. void DivertCxMsg( CxMsg *cxm, CxObj *headobj, CxObj *ret );
  66. void RouteCxMsg( CxMsg *cxm, CxObj *co );
  67. void DisposeCxMsg( CxMsg *cxm );
  68.  
  69. /*  INPUT EVENT HANDLING */
  70.  
  71. BOOL InvertKeyMap( unsigned long ansicode, struct InputEvent *event,
  72.     struct KeyMap *km );
  73. void AddIEvents( struct InputEvent *events );
  74. #endif     /* CLIB_COMMODITIES_PROTOS_H */
  75.