pub unsafe extern "C" fn obs_set_cmdline_args(
    argc: c_int,
    argv: *const *const c_char
)
Expand description

Sets things up for calls to obs_get_cmdline_args. Called only once at startup and safely copies argv/argc from main(). Subsequent calls do nothing.

@param argc The count of command line arguments, from main() @param argv An array of command line arguments, copied from main() and ends with NULL.