mco_fh_mod_destroy

Request deallocation of all resources associated with the module’s handle.

Prototype

 
    void mco_fh_mod_destroy(/*IN*/ mco_fh_module_h h);
 

Arguments

h The module handle

Description

This function requests deallocation of all resources associated with the module’s handle.

Return Codes

void No return value.

Example

 
    void mco_fh_mod_destroy(mco_fh_module_h h)
    {
        TestFeedHandler *handler = reinterpret_cast<TestFeedHandler *>(h);
        delete handler;
    }