tibemsStreamMsg_FreeField

Function

Purpose

Free storage allocated during the reading of a stream message.

C Declaration

void tibemsStreamMsg_FreeField(
    tibemsMsgField* field );

COBOL Call

CALL "tibemsStreamMsg_FreeField"
     USING BY REFERENCE field
END-CALL.

Parameters

Parameter Description
field Free the storage associated with this field struct.

Remarks

Each successful call to tibemsStreamMsg_ReadField allocates storage for a tibemsMsgField. Programs that call tibemsStreamMsg_ReadField must subsequently call this function to free that allocated storage.

This function does not need to be called after tibemsMapMsg_GetField.