pub unsafe extern "C" fn obs_module_get_config_path(
module: *mut obs_module_t,
file: *const c_char,
) -> *mut c_char
Expand description
Returns the path of a plugin module config file (whether it exists or not)
@note Modules should use obs_module_config_path function defined in obs-module.h as a more elegant means of getting their files without having to specify the module parameter.
@param module The module associated with the path @param file The file to get a path to @return Path string, or NULL if not found. Use bfree to free string.