TipcPropertiesDestroy


Name

TipcPropertiesDestroy — destroy a properties table

Synopsis

T_BOOL TipcPropertiesDestroy(props) 
T_IPC_PROPERTIES props; 

Arguments

props — properties table

Return Values

TRUE if table is destroyed successfully, FALSE otherwise.

Diagnostics

If TipcPropertiesDestroy fails, it returns FALSE and sets the global SmartSockets error code to:

Description

TipcPropertiesDestroy frees the memory allocated to the properties table.

Caution

None

See Also

TipcPropertiesCreate, TipcPropertiesCreateMsg, TipcPropertiesMsgCreate

Examples

This example destroys a properties table:

T_IPC_PROPERTIES props; 
T_BOOL status; 
 
/* destroy properties structure */ 
status = TipcPropertiesDestroy(props); 
if (!status) { 
  return;  /* error */ 
} 

TIBCO SmartSockets™ Application Programming Interface
Software Release 6.8, July 2006
Copyright © TIBCO Software Inc. All rights reserved
www.tibco.com