Request deallocation of all resources associated with the module’s handle.
void mco_fh_mod_destroy(/*IN*/ mco_fh_module_h h);
h | The module handle |
This function requests deallocation of all resources associated with the module’s handle.
void | No return value. |
void mco_fh_mod_destroy(mco_fh_module_h h) { TestFeedHandler *handler = reinterpret_cast<TestFeedHandler *>(h); delete handler; }