fix function to take the hook param
[AROS.git] / workbench / libs / rexxsyslib / deleterexxmsg.c
blob40c48cea89445b59fb7b4eed1aa4d2d511acea51
1 /*
2 Copyright © 1995-2002, The AROS Development Team. All rights reserved.
3 $Id$
5 Desc:
6 Lang: english
7 */
8 #include "rexxsyslib_intern.h"
10 /*****************************************************************************
12 NAME */
13 #include <clib/rexxsyslib_protos.h>
15 AROS_LH1(VOID, DeleteRexxMsg,
17 /* SYNOPSIS */
18 AROS_LHA(struct RexxMsg *, packet, A0),
20 /* LOCATION */
21 struct RxsLib *, RexxSysBase, 25, RexxSys)
23 /* FUNCTION
24 Deletes a RexxMsg structure
26 INPUTS
27 packet - The RexxMsg to delete.
29 RESULT
30 void
32 NOTES
34 EXAMPLE
36 BUGS
38 SEE ALSO
39 CreateRexxMsg()
41 INTERNALS
44 *****************************************************************************/
46 AROS_LIBFUNC_INIT
48 FreeMem(packet, packet->rm_Node.mn_Length);
50 ReturnVoid("DeleteRexxMsg");
51 AROS_LIBFUNC_EXIT
52 } /* DeleteRexxMsg */