Forward compatibility: build relative-base link libraries where needed
[AROS.git] / workbench / libs / rexxsupport / closeportrsrc.c
blob6d79a0c7234cb2cdf896cf377b887b5c15744460
1 /*
2 Copyright © 1995-2002, The AROS Development Team. All rights reserved.
3 $Id$
5 Desc:
6 Lang: english
7 */
8 #include <proto/exec.h>
9 #include <aros/debug.h>
10 #include "rexxsupport_intern.h"
11 #include "portnode.h"
13 /*****************************************************************************
15 NAME */
17 AROS_LH1(VOID, ClosePortRsrc,
19 /* SYNOPSIS */
20 AROS_LHA(struct RexxRsrc *, rsrc, A0),
22 /* LOCATION */
23 struct Library *, RexxSupportBase, 6, RexxSupport)
25 /* FUNCTION
26 Deletes a RexxMsg structure
28 INPUTS
29 packet - The RexxMsg to delete.
31 RESULT
32 void
34 NOTES
36 EXAMPLE
38 BUGS
40 SEE ALSO
41 rexxsyslib.library/CreateRexxMsg()
43 INTERNALS
46 *****************************************************************************/
48 AROS_LIBFUNC_INIT
50 portcleanup(RexxSupportBase, (struct PortNode *)rsrc);
52 ReturnVoid("ClosePortRsrc");
53 AROS_LIBFUNC_EXIT
54 } /* DeleteRexxMsg */