SDL_DialogFileFilter

An entry for filters for file dialogs.

name is a user-readable label for the filter (for example, "Office document").

pattern is a semicolon-separated list of file extensions (for example, "doc;docx"). File extensions may only contain alphanumeric characters, hyphens, underscores and periods. Alternatively, the whole string can be a single asterisk ("*"), which serves as an "All files" filter.

extern (C) nothrow @nogc
struct SDL_DialogFileFilter {}

Members

Variables

name
const(char)** name;
Undocumented in source.
pattern
const(char)** pattern;
Undocumented in source.

See Also

Meta