Function show_open_file_dialog

pub fn show_open_file_dialog<'a, W>(
    filters: &[DialogFileFilter<'_>],
    default_location: Option<impl AsRef<Path>>,
    allow_many: bool,
    window: W,
    callback: Box<dyn Fn(Result<Vec<PathBuf>, DialogError>, Option<DialogFileFilter<'_>>)>,
) -> Result<(), DialogError> 
where W: Into<Option<&'a Window>>,
Available on crate feature dep_sdl3 only.