mirror of
https://github.com/deadw00d/AROS.git
synced 2025-11-21 18:33:33 +00:00
51 lines
882 B
C
51 lines
882 B
C
/*
|
|
Copyright (C) 1995-2002, The AROS Development Team. All rights reserved.
|
|
|
|
Desc:
|
|
*/
|
|
#include "rexxsyslib_intern.h"
|
|
|
|
/*****************************************************************************
|
|
|
|
NAME */
|
|
#include <clib/rexxsyslib_protos.h>
|
|
|
|
AROS_LH1(VOID, DeleteRexxMsg,
|
|
|
|
/* SYNOPSIS */
|
|
AROS_LHA(struct RexxMsg *, packet, A0),
|
|
|
|
/* LOCATION */
|
|
struct RxsLib *, RexxSysBase, 25, RexxSys)
|
|
|
|
/* FUNCTION
|
|
Deletes a RexxMsg structure
|
|
|
|
INPUTS
|
|
packet - The RexxMsg to delete.
|
|
|
|
RESULT
|
|
void
|
|
|
|
NOTES
|
|
|
|
EXAMPLE
|
|
|
|
BUGS
|
|
|
|
SEE ALSO
|
|
CreateRexxMsg()
|
|
|
|
INTERNALS
|
|
|
|
|
|
*****************************************************************************/
|
|
{
|
|
AROS_LIBFUNC_INIT
|
|
|
|
FreeMem(packet, packet->rm_Node.mn_Length);
|
|
|
|
ReturnVoid("DeleteRexxMsg");
|
|
AROS_LIBFUNC_EXIT
|
|
} /* DeleteRexxMsg */
|