NAME
DeleteRexxMsg - Releases a RexxMsg structure created by CreateRexxMsg()
SYNOPSIS
DeleteRexxMsg(packet)
A0
VOID DeleteRexxMsg(struct RexxMsg *);
FUNCTION
The function releases an ARexx message packet that was allocated
with CreateRexxMsg(). Any argument fields in the RexxMsg structure
should be cleared before calling this function as it does
not release them for you.
INPUTS
packet - A pointer to a RexxMsg structure allocated by CreateRexxMsg()
EXAMPLE
if (rmsg=CreateRexxMsg(myport,"myapp","MYAPP_PORT"))
{
/* Do my think with rmsg */
ClearRexxMsg(rmsg,16); /* We may not want to clear all 16 */
DeleteRexxMsg(rmsg);
}
SEE ALSO
CreateRexxMsg(), ClearRexxMsg()
BUGS