Set a runtime option.
void mco_runtime_setoption( int option, int value)
option | The option to be set. (See the table below) |
value | The value to which the option will be set. (See the table below) |
This function sets the runtime option to the specified value. The options and allowable values are described in page Runtime Options.
void | None |
Application snippet: int main(int argc, char* argv[]) { ... mco_runtime_setoption( MCO_RT_OPTION_DATETIME_PRECISION, 1000000 ); ... mco_runtime_start(); }