mco_fh_mod_version

Return the version of the module.

Prototype

 
    const char *mco_fh_mod_version(/*IN*/ mco_fh_module_h h)
 

Arguments

h The module handle

Description

This function returns the version of the module.

Return Codes

const char * The version number as a string

Example

 
    const char *mco_fh_mod_version(mco_fh_module_h h)
    {
        return "1.0";
    }