DeleteRexxMsg(packet)
VOID DeleteRexxMsg(struct RexxMsg *)
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.
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);
}