Get a runtime option value.
int mco_runtime_getoption( int option )
| option | The option to retrieve (see page Runtime Options for the possible values) |
Returns the value of the specified runtime option.
| int | An integer value of the specified runtime option |
Application snippet:
int main(int argc, char* argv[])
{
int val = 0;
mco_runtime_start();
...
val = mco_runtime_getoption( MCO_RT_OPTION_DATETIME_PRECISION );
...
}