pub unsafe extern "C" fn obs_find_module_file(
    module: *mut obs_module_t,
    file: *const c_char
) -> *mut c_char
Expand description

Returns the location of a plugin module data file.

@note Modules should use obs_module_file 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 file to locate @param file The file to locate @return Path string, or NULL if not found. Use bfree to free string.