TQ3ObjectUnregisterMethod
You can define a method to unregister your custom object class.
typedef TQ3Status (*TQ3ObjectUnregisterMethod) ( TQ3ObjectClass objectClass);
objectClass- An object class.
DESCRIPTION
YourTQ3ObjectUnregisterMethodfunction should perform whatever operations are necessary to unregister the object class specified by theobjectClassparameter. If you have local data associated with that object class, you should define an unregistration method. You must not call theQ3ObjectClass_Unregisterfunction within this method.RESULT CODES
YourTQ3ObjectUnregisterMethodfunction should returnkQ3Successif it is successful andkQ3Failureotherwise.