TipcPropertiesCreate


Name

TipcPropertiesCreate — create a properties table

Synopsis

T_IPC_PROPERTIES TipcPropertiesCreate(void) 

Arguments

None

Return Values

Pointer to a properties table if successful, NULL otherwise.

Diagnostics

If TipcPropertiesCreate fails, it returns NULL.

Description

TipcPropertiesCreate returns a pointer to a properties table. Properties tables are used for querying and updating the properties of queues and queue managers.

Caution

None

See Also

TipcPropertiesDestroy, TipcPropertiesCreateMsg, TipcPropertiesMsgCreate

Examples

This example creates a properties table:

T_IPC_PROPERTIES props; 
 
/* create a properties table */ 
props = TipcPropertiesCreate(); 
if (props == NULL) { 
  return;  /* error */ 
} 

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