AndrewBelt / osdialog

A cross platform wrapper for OS dialogs like file save, open, message boxes, inputs, color picking, etc.
Creative Commons Zero v1.0 Universal
122 stars 19 forks source link

aviability to select multiple files #11

Open WSandwitch opened 5 years ago

WSandwitch commented 5 years ago

Does this lib provides getting more than 1 file at ones?

AndrewBelt commented 5 years ago

Not yet, but I'd approve this feature if you sent a PR. If you don't add it, I might do it myself in the next year.

AndrewBelt commented 5 years ago

The API could be

osdialog_file_list *osdialog_files(osdialog_file_action action, const char *path, const char *filename, osdialog_filters *filters);

with osdialog_file_list being the obvious linked list of char*s.