Example #1
0
void adbl_attrs_delete (AdblAttributes** ptr)
{
  AdblAttributes* self = *ptr;
  
  ecmapchar_destroy (EC_ALLOC, &(self->columns));
  
  ENTC_DEL(ptr, AdblAttributes);
}
Example #2
0
void module_destroy (Q5Module** pself)
{    
  Q5Module* self = *pself;
  
  ecstr_delete (&(self->host));
  
  ENTC_DEL (pself, Q5Module);
}