IPB_Session interface:
ReleaseArrayInfo method
Description
Releases memory returned by GetArrayInfo.
Syntax
ReleaseArrayInfo(PBArrayInfo* pbarrayinfo)
Argument
|
Description
|
pbarrayinfo
|
A valid PBArrayInfo handle
|
Return Values
PBXRESULT. PBX_OK for success.
Examples
This example shows how ReleaseArrayInfo should
be called when memory allocated by GetArrayInfo is
no longer needed:
PBArrayInfo* ai;
...
session->ReleaseArrayInfo(ai);
Usage
If the array is an unbounded array, the bounds information
in PBArrayInfo is undetermined.
See Also