a1200   NEWS   APPS   DOCS   ABOUT
a1200
----
a1200
----
Autodocs
 Libraries:
 rexxsyslib.library
  ClearRexxMsg
  CreateArgstring
  CreateRexxMsg
  DeleteArgstring
  DeleteRexxMsg
  FillRexxMsg
  IsRexxMsg
  LengthArgstring
  LockRexxBase
  UnlockRexxBase
Include
GuruMeditation
Docs » Autodocs » rexxsyslib.library » DeleteRexxMsg

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

Comments

Name:
E-mail: Use this if you want a message if you get a response, will not be shown.
Comment:
Select correct short for:

The Black Lotus

TSL
TBL
HZ
RZR

Comments:

$VER: d0.se 1.14 Copyright © 2011-2024 Tobias Geijersson support at d0 dot se