more rendering corrections
[AROS.git] / workbench / libs / commodities / routecxmsg.c
blob207470e14d140662a01da210676180f13462e563
1 /*
2 Copyright © 1995-2001, The AROS Development Team. All rights reserved.
3 $Id$
5 Desc:
6 Lang: English
7 */
9 /*****************************************************************************
11 NAME */
13 #include "cxintern.h"
14 #include <proto/commodities.h>
16 AROS_LH2I(VOID, RouteCxMsg,
18 /* SYNOPSIS */
20 AROS_LHA(CxMsg *, cxm, A0),
21 AROS_LHA(CxObj *, co , A1),
23 /* LOCATION */
25 struct Library *, CxBase, 27, Commodities)
27 /* FUNCTION
29 Set the next destination of a commodity message to be 'co'.
30 ('co' must be a valid commodity object and linked in to the commodities
31 hierarchy.)
33 INPUTS
35 cxm - the commodity message to route (may NOT be NULL)
36 co - the commodity object to route the message to (may NOT be NULL)
38 RESULT
40 NOTES
42 EXAMPLE
44 BUGS
46 SEE ALSO
48 DivertCxMsg()
50 INTERNALS
52 HISTORY
54 ******************************************************************************/
57 AROS_LIBFUNC_INIT
59 ROUTECxMsg(cxm, co);
61 AROS_LIBFUNC_EXIT
62 } /* RouteCxMsg */