TipcMtLogRemoveMt remove a message type from a message file logging type
log_type
message file logging type
mt
message type to remove from list
TRUE
if message type was successfully removed, FALSE
otherwise.
If TipcMtLogRemoveMt fails, it returns FALSE
and sets the global SmartSockets error number to one of:
TipcMtLogRemoveMt removes a message type from a message file logging type. See TipcMtLogAddMt for more information on logging types.
TipcMtLogRemoveMt only takes effect if called before the RTclient has created a connection to RTserver.
TipcMtLogAddMt; see the TIBCO SmartSockets Utilities for information on TutPtrAryRemove.
This example removes the TIME
message type from the data
logging type with TipcMtLogRemoveMt:
mt = TipcMtLookupByNum(T_MT_TIME); if (mt == NULL) {
return
; /* error */
} if (!TipcMtLogRemoveMt(T_IPC_MT_LOG_DATA, mt)) {
return
; /* error */
}
TIBCO SmartSockets™ Application Programming Interface Software Release 6.8, July 2006 Copyright © TIBCO Software Inc. All rights reserved www.tibco.com |